Skip to content

Commit 9ed9d8d

Browse files
Merge pull request #7 from Yacine2731/second_branch
Second branch
2 parents 8b9ee08 + 7de3033 commit 9ed9d8d

27 files changed

+534
-508
lines changed

README.md

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,41 +13,45 @@ TexFusion AI app created by flutter framework and it is a new AI art generation
1313
- Unlimited Response
1414
- Added 12 Styles including 3D render.
1515
- Download Image
16-
- Accent Color Mode
17-
- Theme Mode
16+
- Different Theme And Modes
1817
- Custom Font
1918
- Lightweight & user-friendly
19+
- Cross Platform (Android , Linux , Windows and MacOs)
2020

2121
## How it work !
2222
- Make sure you enter more descriptive prompt. As this is kind of new api, it produces HD image with less descriptive prompt. So, make sure you describe the image correctly that you want as output.
2323

24-
Fork the repo 🔥 and don't forget to star the repo 🌟
24+
Fork the repo 🔥 and don't forget to star the repo 🌟
2525

2626
## Screenshots
2727
<Table>
2828
<tr>
29-
<th>Home Screen View</th>
30-
<th>Drawer Screen View</th>
31-
<th>Accent Color Dialog View</th>
32-
<th>Theme Mode Dialog View</th>
29+
<th>Home Screen View In Desktop</th>
30+
<th>Home Screen View In Mobile</th>
31+
<th>Settings Page</th>
3332
</tr>
3433
<tr>
35-
<td><img src="screenshots/Screenshot 8.png" width=300/></td>
36-
<td><img src="screenshots/Screenshot 5.png" width=300/></td>
37-
<td><img src="screenshots/Screenshot 6.png" width=300/></td>
38-
<td><img src="screenshots/Screenshot 7.png" width=300/></td>
34+
<td><img src="screenshots/01.png" width=600/></td>
35+
<td><img src="screenshots/04.png" width=300/></td>
36+
<td><img src="screenshots/05.png" width=300/></td>
3937
</tr>
4038
<tr>
41-
<th>Prompt Example 1</th>
42-
<th>Prompt Example 2</th>
43-
<th>Prompt Example 3</th>
44-
<th>Prompt Example 4</th>
39+
<th>Responsive UI</th>
40+
<th>Dark Mode in Mobile</th>
41+
<th>Save option</th>
4542
</tr>
4643
<tr>
47-
<td><img src="screenshots/Screenshot 1.png" width=300/></td>
48-
<td><img src="screenshots/Screenshot 2.png" width=300/></td>
49-
<td><img src="screenshots/Screenshot 3.png" width=300/></td>
50-
<td><img src="screenshots/Screenshot 4.png" width=300/></td>
44+
<td><img src="screenshots/03.png" width=600/></td>
45+
<td><img src="screenshots/08.png" width=300/></td>
46+
<td><img src="screenshots/07.png" width=300/></td>
47+
</tr>
48+
<tr>
49+
<th>Dark Mode in Desktop</th>
50+
<th>Different Style</th>
51+
</tr>
52+
<tr>
53+
<td><img src="screenshots/02.png" width=600/></td>
54+
<td><img src="screenshots/06.png" width=300/></td>
5155
</tr>
5256
</Table>
5357

@@ -57,7 +61,7 @@ Whether you have ideas, design changes, code cleaning, or really heavy code chan
5761
## Contributors ✨
5862
[![](https://opencollective.com/text_to_image_gen/contributors.svg?width=890&button=false)](https://github.com/VikramadityaDev/text_to_image_gen/graphs/contributors)
5963

60-
64+
6165
## License
6266
```
6367
MIT License
@@ -81,4 +85,4 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8185
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
8286
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
8387
SOFTWARE.
84-
```
88+
```
Loading
Loading
Loading
Loading
Loading
Loading

lib/Pages/home_page.dart

Lines changed: 332 additions & 434 deletions
Large diffs are not rendered by default.

lib/Pages/settings_page.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ class _SettingsPageState extends State<SettingsPage> {
229229
),
230230
),
231231
ListView(
232+
physics: const BouncingScrollPhysics(),
232233
shrinkWrap: true,
233234
children: _themes.map((theme) {
234235
return Padding(

lib/utils/strings.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@ import '../widgets/app_theme.dart';
22

33
final appThemes = {
44
material: 'Material',
5+
materialHighContrast: 'Material High Contrast',
6+
espressoAndCream: 'Espresso and Cream',
57
indigoTheme: 'Indigo Nights',
68
blueWhaleTheme: 'Blue Whale',
79
goldSunset: 'Gold Sunset',
810
dellGenoaGreen: 'Dell Genoe Green',
11+
greyLaw: 'Grey Law',
12+
camaroneGreen: 'Camarone Green',
13+
rustDeepOrange: 'Rust Deep Orange',
914
};
1015

1116
const system = 'system';

0 commit comments

Comments
 (0)