Skip to content

Commit e3bde27

Browse files
committed
Fixed typo in filename
1 parent 4997543 commit e3bde27

15 files changed

+250
-192
lines changed

best_flutter_ui_templates/lib/fitness_app/bottom_navigation_view/bottom_bar_view.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class _BottomBarViewState extends State<BottomBarView>
4444
return Transform(
4545
transform: Matrix4.translationValues(0.0, 0.0, 0.0),
4646
child: PhysicalShape(
47-
color: FintnessAppTheme.white,
47+
color: FitnessAppTheme.white,
4848
elevation: 16.0,
4949
clipper: TabClipper(
5050
radius: Tween<double>(begin: 0.0, end: 1.0)
@@ -142,18 +142,18 @@ class _BottomBarViewState extends State<BottomBarView>
142142
child: Container(
143143
// alignment: Alignment.center,s
144144
decoration: BoxDecoration(
145-
color: FintnessAppTheme.nearlyDarkBlue,
145+
color: FitnessAppTheme.nearlyDarkBlue,
146146
gradient: LinearGradient(
147147
colors: [
148-
FintnessAppTheme.nearlyDarkBlue,
148+
FitnessAppTheme.nearlyDarkBlue,
149149
HexColor('#6A88E5'),
150150
],
151151
begin: Alignment.topLeft,
152152
end: Alignment.bottomRight),
153153
shape: BoxShape.circle,
154154
boxShadow: <BoxShadow>[
155155
BoxShadow(
156-
color: FintnessAppTheme.nearlyDarkBlue
156+
color: FitnessAppTheme.nearlyDarkBlue
157157
.withOpacity(0.4),
158158
offset: const Offset(8.0, 16.0),
159159
blurRadius: 16.0),
@@ -170,7 +170,7 @@ class _BottomBarViewState extends State<BottomBarView>
170170
},
171171
child: Icon(
172172
Icons.add,
173-
color: FintnessAppTheme.white,
173+
color: FitnessAppTheme.white,
174174
size: 32,
175175
),
176176
),
@@ -274,7 +274,7 @@ class _TabIconsState extends State<TabIcons> with TickerProviderStateMixin {
274274
width: 8,
275275
height: 8,
276276
decoration: BoxDecoration(
277-
color: FintnessAppTheme.nearlyDarkBlue,
277+
color: FitnessAppTheme.nearlyDarkBlue,
278278
shape: BoxShape.circle,
279279
),
280280
),
@@ -295,7 +295,7 @@ class _TabIconsState extends State<TabIcons> with TickerProviderStateMixin {
295295
width: 4,
296296
height: 4,
297297
decoration: BoxDecoration(
298-
color: FintnessAppTheme.nearlyDarkBlue,
298+
color: FitnessAppTheme.nearlyDarkBlue,
299299
shape: BoxShape.circle,
300300
),
301301
),
@@ -316,7 +316,7 @@ class _TabIconsState extends State<TabIcons> with TickerProviderStateMixin {
316316
width: 6,
317317
height: 6,
318318
decoration: BoxDecoration(
319-
color: FintnessAppTheme.nearlyDarkBlue,
319+
color: FitnessAppTheme.nearlyDarkBlue,
320320
shape: BoxShape.circle,
321321
),
322322
),

best_flutter_ui_templates/lib/fitness_app/fintness_app_theme.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:flutter/material.dart';
22

3-
class FintnessAppTheme {
4-
FintnessAppTheme._();
3+
class FitnessAppTheme {
4+
FitnessAppTheme._();
55
static const Color nearlyWhite = Color(0xFFFAFAFA);
66
static const Color white = Color(0xFFFFFFFF);
77
static const Color background = Color(0xFFF2F3F8);

best_flutter_ui_templates/lib/fitness_app/fitness_app_home_screen.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class _FitnessAppHomeScreenState extends State<FitnessAppHomeScreen>
1717
List<TabIconData> tabIconsList = TabIconData.tabIconsList;
1818

1919
Widget tabBody = Container(
20-
color: FintnessAppTheme.background,
20+
color: FitnessAppTheme.background,
2121
);
2222

2323
@override
@@ -42,7 +42,7 @@ class _FitnessAppHomeScreenState extends State<FitnessAppHomeScreen>
4242
@override
4343
Widget build(BuildContext context) {
4444
return Container(
45-
color: FintnessAppTheme.background,
45+
color: FitnessAppTheme.background,
4646
child: Scaffold(
4747
backgroundColor: Colors.transparent,
4848
body: FutureBuilder<bool>(

best_flutter_ui_templates/lib/fitness_app/my_diary/meals_list_view.dart

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,11 @@ class MealsView extends StatelessWidget {
145145
mealsListData.titleTxt,
146146
textAlign: TextAlign.center,
147147
style: TextStyle(
148-
fontFamily: FintnessAppTheme.fontName,
148+
fontFamily: FitnessAppTheme.fontName,
149149
fontWeight: FontWeight.bold,
150150
fontSize: 16,
151151
letterSpacing: 0.2,
152-
color: FintnessAppTheme.white,
152+
color: FitnessAppTheme.white,
153153
),
154154
),
155155
Expanded(
@@ -163,11 +163,11 @@ class MealsView extends StatelessWidget {
163163
Text(
164164
mealsListData.meals.join('\n'),
165165
style: TextStyle(
166-
fontFamily: FintnessAppTheme.fontName,
166+
fontFamily: FitnessAppTheme.fontName,
167167
fontWeight: FontWeight.w500,
168168
fontSize: 10,
169169
letterSpacing: 0.2,
170-
color: FintnessAppTheme.white,
170+
color: FitnessAppTheme.white,
171171
),
172172
),
173173
],
@@ -183,11 +183,11 @@ class MealsView extends StatelessWidget {
183183
mealsListData.kacl.toString(),
184184
textAlign: TextAlign.center,
185185
style: TextStyle(
186-
fontFamily: FintnessAppTheme.fontName,
186+
fontFamily: FitnessAppTheme.fontName,
187187
fontWeight: FontWeight.w500,
188188
fontSize: 24,
189189
letterSpacing: 0.2,
190-
color: FintnessAppTheme.white,
190+
color: FitnessAppTheme.white,
191191
),
192192
),
193193
Padding(
@@ -197,23 +197,23 @@ class MealsView extends StatelessWidget {
197197
'kcal',
198198
style: TextStyle(
199199
fontFamily:
200-
FintnessAppTheme.fontName,
200+
FitnessAppTheme.fontName,
201201
fontWeight: FontWeight.w500,
202202
fontSize: 10,
203203
letterSpacing: 0.2,
204-
color: FintnessAppTheme.white,
204+
color: FitnessAppTheme.white,
205205
),
206206
),
207207
),
208208
],
209209
)
210210
: Container(
211211
decoration: BoxDecoration(
212-
color: FintnessAppTheme.nearlyWhite,
212+
color: FitnessAppTheme.nearlyWhite,
213213
shape: BoxShape.circle,
214214
boxShadow: <BoxShadow>[
215215
BoxShadow(
216-
color: FintnessAppTheme.nearlyBlack
216+
color: FitnessAppTheme.nearlyBlack
217217
.withOpacity(0.4),
218218
offset: Offset(8.0, 8.0),
219219
blurRadius: 8.0),
@@ -240,7 +240,7 @@ class MealsView extends StatelessWidget {
240240
width: 84,
241241
height: 84,
242242
decoration: BoxDecoration(
243-
color: FintnessAppTheme.nearlyWhite.withOpacity(0.2),
243+
color: FitnessAppTheme.nearlyWhite.withOpacity(0.2),
244244
shape: BoxShape.circle,
245245
),
246246
),

best_flutter_ui_templates/lib/fitness_app/my_diary/my_diary_screen.dart

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ class _MyDiaryScreenState extends State<MyDiaryScreen>
164164
@override
165165
Widget build(BuildContext context) {
166166
return Container(
167-
color: FintnessAppTheme.background,
167+
color: FitnessAppTheme.background,
168168
child: Scaffold(
169169
backgroundColor: Colors.transparent,
170170
body: Stack(
@@ -220,13 +220,13 @@ class _MyDiaryScreenState extends State<MyDiaryScreen>
220220
0.0, 30 * (1.0 - topBarAnimation.value), 0.0),
221221
child: Container(
222222
decoration: BoxDecoration(
223-
color: FintnessAppTheme.white.withOpacity(topBarOpacity),
223+
color: FitnessAppTheme.white.withOpacity(topBarOpacity),
224224
borderRadius: const BorderRadius.only(
225225
bottomLeft: Radius.circular(32.0),
226226
),
227227
boxShadow: <BoxShadow>[
228228
BoxShadow(
229-
color: FintnessAppTheme.grey
229+
color: FitnessAppTheme.grey
230230
.withOpacity(0.4 * topBarOpacity),
231231
offset: const Offset(1.1, 1.1),
232232
blurRadius: 10.0),
@@ -253,11 +253,11 @@ class _MyDiaryScreenState extends State<MyDiaryScreen>
253253
'My Diary',
254254
textAlign: TextAlign.left,
255255
style: TextStyle(
256-
fontFamily: FintnessAppTheme.fontName,
256+
fontFamily: FitnessAppTheme.fontName,
257257
fontWeight: FontWeight.w700,
258258
fontSize: 22 + 6 - 6 * topBarOpacity,
259259
letterSpacing: 1.2,
260-
color: FintnessAppTheme.darkerText,
260+
color: FitnessAppTheme.darkerText,
261261
),
262262
),
263263
),
@@ -273,7 +273,7 @@ class _MyDiaryScreenState extends State<MyDiaryScreen>
273273
child: Center(
274274
child: Icon(
275275
Icons.keyboard_arrow_left,
276-
color: FintnessAppTheme.grey,
276+
color: FitnessAppTheme.grey,
277277
),
278278
),
279279
),
@@ -289,19 +289,19 @@ class _MyDiaryScreenState extends State<MyDiaryScreen>
289289
padding: const EdgeInsets.only(right: 8),
290290
child: Icon(
291291
Icons.calendar_today,
292-
color: FintnessAppTheme.grey,
292+
color: FitnessAppTheme.grey,
293293
size: 18,
294294
),
295295
),
296296
Text(
297297
'15 May',
298298
textAlign: TextAlign.left,
299299
style: TextStyle(
300-
fontFamily: FintnessAppTheme.fontName,
300+
fontFamily: FitnessAppTheme.fontName,
301301
fontWeight: FontWeight.normal,
302302
fontSize: 18,
303303
letterSpacing: -0.2,
304-
color: FintnessAppTheme.darkerText,
304+
color: FitnessAppTheme.darkerText,
305305
),
306306
),
307307
],
@@ -318,7 +318,7 @@ class _MyDiaryScreenState extends State<MyDiaryScreen>
318318
child: Center(
319319
child: Icon(
320320
Icons.keyboard_arrow_right,
321-
color: FintnessAppTheme.grey,
321+
color: FitnessAppTheme.grey,
322322
),
323323
),
324324
),

0 commit comments

Comments
 (0)