22 changed files with 120 additions and 1278 deletions
-
BINassets/fonts/Marhey-Bold.ttf
-
BINassets/fonts/Marhey-Light.ttf
-
BINassets/fonts/Marhey-Medium.ttf
-
BINassets/fonts/Marhey-Regular.ttf
-
BINassets/fonts/Marhey-SemiBold.ttf
-
1181assets/json/levels.json
-
84lib/common_ui/resources/my_text_style.dart
-
18lib/core/widgets/about_us_dialog/about_us_dialog.dart
-
1lib/core/widgets/answer_box/answer_box.dart
-
8lib/core/widgets/answer_box/styles/picture_box.dart
-
8lib/core/widgets/answer_box/styles/text_box.dart
-
6lib/core/widgets/showcase/question_showcase.dart
-
2lib/features/intro/presentation/ui/widgets/intro_loading_widget.dart
-
1lib/features/level/presentation/ui/level_page.dart
-
10lib/features/level/presentation/ui/widgets/hint_level_widget.dart
-
11lib/features/level/presentation/ui/widgets/level_widget.dart
-
1lib/features/question/presentation/bloc/question_bloc.dart
-
21lib/features/question/presentation/ui/question_page.dart
-
6lib/features/question/presentation/ui/widgets/left_blob.dart
-
6lib/features/question/presentation/ui/widgets/right_blob.dart
-
8pubspec.lock
-
26pubspec.yaml
1181
assets/json/levels.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1,28 +1,70 @@ |
|||||
import 'package:flutter/material.dart'; |
import 'package:flutter/material.dart'; |
||||
|
|
||||
class MyTextStyle { |
|
||||
static const MyTextStyle _i = MyTextStyle._internal(); |
|
||||
const MyTextStyle._internal(); |
|
||||
factory MyTextStyle() => _i; |
|
||||
|
class DinoKids { |
||||
|
static const DinoKids _i = DinoKids._internal(); |
||||
|
const DinoKids._internal(); |
||||
|
factory DinoKids() => _i; |
||||
|
|
||||
static const String fontFamily = 'dinokids'; |
static const String fontFamily = 'dinokids'; |
||||
|
|
||||
static const TextStyle normal26 = TextStyle( |
|
||||
fontFamily: fontFamily, |
|
||||
fontSize: 26, |
|
||||
fontWeight: FontWeight.w400, |
|
||||
shadows: [ |
|
||||
Shadow( |
|
||||
color: Color(0XFF5B5B5B), |
|
||||
blurRadius: 2.86, |
|
||||
offset: Offset(0, 2), |
|
||||
), |
|
||||
] |
|
||||
); |
|
||||
|
|
||||
static const TextStyle normal17 = TextStyle( |
|
||||
fontFamily: fontFamily, |
|
||||
fontSize: 17, |
|
||||
fontWeight: FontWeight.w400, |
|
||||
|
/// Regular |
||||
|
static const TextStyle regular17 = TextStyle( |
||||
|
fontFamily: fontFamily, |
||||
|
fontSize: 17, |
||||
|
fontWeight: FontWeight.w400, |
||||
|
); |
||||
|
static const TextStyle regular26 = TextStyle( |
||||
|
fontFamily: fontFamily, |
||||
|
fontSize: 26, |
||||
|
fontWeight: FontWeight.w400, |
||||
|
); |
||||
|
} |
||||
|
|
||||
|
class Marhey { |
||||
|
static const Marhey _i = Marhey._internal(); |
||||
|
const Marhey._internal(); |
||||
|
factory Marhey() => _i; |
||||
|
|
||||
|
static const String fontFamily = 'marhey'; |
||||
|
|
||||
|
/// Medium |
||||
|
static const TextStyle medium12 = TextStyle( |
||||
|
fontFamily: fontFamily, |
||||
|
fontSize: 12, |
||||
|
fontWeight: FontWeight.w500, |
||||
|
); |
||||
|
static const TextStyle medium16 = TextStyle( |
||||
|
fontFamily: fontFamily, |
||||
|
fontSize: 16, |
||||
|
fontWeight: FontWeight.w500, |
||||
|
); |
||||
|
|
||||
|
/// Semi Bold |
||||
|
static const TextStyle semiBold17 = TextStyle( |
||||
|
fontFamily: fontFamily, |
||||
|
fontSize: 17, |
||||
|
fontWeight: FontWeight.w600, |
||||
|
); |
||||
|
static const TextStyle semiBold18 = TextStyle( |
||||
|
fontFamily: fontFamily, |
||||
|
fontSize: 18, |
||||
|
fontWeight: FontWeight.w600, |
||||
|
); |
||||
|
static const TextStyle semiBold22 = TextStyle( |
||||
|
fontFamily: fontFamily, |
||||
|
fontSize: 22, |
||||
|
fontWeight: FontWeight.w600, |
||||
|
); |
||||
|
|
||||
|
/// Bold |
||||
|
static const TextStyle bold12 = TextStyle( |
||||
|
fontFamily: fontFamily, |
||||
|
fontSize: 12, |
||||
|
fontWeight: FontWeight.w700, |
||||
|
); |
||||
|
static const TextStyle bold14 = TextStyle( |
||||
|
fontFamily: fontFamily, |
||||
|
fontSize: 14, |
||||
|
fontWeight: FontWeight.w700, |
||||
); |
); |
||||
} |
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue