You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -43,13 +45,148 @@ class _AboutPageState extends State<AboutPage> {
43
45
onPressed: () =>Navigator.of(context).pop(),
44
46
),
45
47
),
46
-
body:Column(
47
-
mainAxisAlignment:MainAxisAlignment.center,
48
-
children:const [
49
-
Center(
50
-
child:Text('Adding Soon..'),
48
+
body:SingleChildScrollView(
49
+
physics:constBouncingScrollPhysics(),
50
+
scrollDirection:Axis.vertical,
51
+
child:Column(
52
+
crossAxisAlignment:CrossAxisAlignment.center,
53
+
children: [
54
+
Padding(
55
+
padding:constEdgeInsets.all(8.0),
56
+
child:Text(
57
+
'Description',
58
+
style:TextStyle(
59
+
fontSize:18,
60
+
fontFamily:'Nexa',
61
+
color:Theme.of(context).colorScheme.secondary),
62
+
),
63
+
),
64
+
Padding(
65
+
padding:constEdgeInsets.all(5.0),
66
+
child:Text(
67
+
'The TexFusion AI app was created by the Flutter framework and is a new AI art generation tool that can create amazing images from just text prompts. TexFusion AI can also make variations of your existing image. It uses the brain_fusion API to get realistically rendered images.',
68
+
style:TextStyle(
69
+
fontSize:15,
70
+
fontFamily:'NexaLight',
71
+
fontWeight:FontWeight.bold,
72
+
color:Theme.of(context).colorScheme.secondary),
73
+
textAlign:TextAlign.center,
74
+
),
75
+
),
76
+
constDivider(),
77
+
Padding(
78
+
padding:constEdgeInsets.all(8.0),
79
+
child:Text(
80
+
'Features',
81
+
style:TextStyle(
82
+
fontSize:18,
83
+
fontFamily:'Nexa',
84
+
color:Theme.of(context).colorScheme.secondary),
85
+
),
86
+
),
87
+
Padding(
88
+
padding:constEdgeInsets.all(5.0),
89
+
child:Text(
90
+
'- Generate Images from Text \n - High Quality images. \n - Unlimited Response. \n - Added 12 Styles. \n - Download Image \n - Accent Color Mode. \n - Theme Mode. \n - Lightweight & User Friendly.',
91
+
style:TextStyle(
92
+
fontSize:15,
93
+
fontFamily:'NexaLight',
94
+
fontWeight:FontWeight.bold,
95
+
color:Theme.of(context).colorScheme.secondary),
96
+
textAlign:TextAlign.center,
97
+
),
98
+
),
99
+
constDivider(),
100
+
Padding(
101
+
padding:constEdgeInsets.all(8.0),
102
+
child:Text(
103
+
'How its work ?',
104
+
style:TextStyle(
105
+
fontSize:18,
106
+
fontFamily:'Nexa',
107
+
color:Theme.of(context).colorScheme.secondary),
108
+
),
109
+
),
110
+
Padding(
111
+
padding:constEdgeInsets.all(5.0),
112
+
child:Text(
113
+
"1. Make sure you enter a more descriptive prompt. As this is a new API, it is going to take time to produce HD images with a less descriptive prompt. So, make sure you describe the image correctly that you want as output. \n\n 2. Try to select styles while creating your image. Check different styles and see how the output image looks.",
114
+
style:TextStyle(
115
+
fontSize:15,
116
+
fontFamily:'NexaLight',
117
+
fontWeight:FontWeight.bold,
118
+
color:Theme.of(context).colorScheme.secondary),
119
+
textAlign:TextAlign.center,
120
+
),
121
+
),
122
+
Padding(
123
+
padding:constEdgeInsets.all(5.0),
124
+
child:Text(
125
+
"Fork the repository, and don't forget to star the repository 🌟",
0 commit comments