File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
packages/dart/npt_flutter
features/authorisation/view Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 6
6
- ** FEAT** : Added Version Number on the onboarding and settings screen.
7
7
- ** FIX** : Added Localization support for the authentication feature.
8
8
- ** FIX** : Backup Key is implemented correctly.
9
+ - ** FIX** : Authorization screen
9
10
10
11
## 1.0.0
11
12
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ class AuthorisationView extends StatelessWidget {
15
15
),
16
16
child: AuthorisationHub (
17
17
service: context.watch <AuthorisationService >(),
18
+ themeData: Theme .of (context).copyWith (
19
+ colorScheme: Theme .of (context).colorScheme.copyWith (
20
+ primary: Theme .of (context).colorScheme.primary,
21
+ ),
22
+ ),
18
23
),
19
24
),
20
25
);
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ class AppTheme {
12
12
fontSize: Sizes .p24,
13
13
fontWeight: FontWeight .w500,
14
14
),
15
+ headlineSmall: TextStyle (
16
+ fontSize: 15 ,
17
+ fontWeight: FontWeight .w500,
18
+ ),
15
19
titleMedium: TextStyle (
16
20
fontSize: Sizes .p18,
17
21
fontWeight: FontWeight .w600,
@@ -87,6 +91,7 @@ class AppTheme {
87
91
primary: AppColor .primaryColor,
88
92
surface: AppColor .surfaceColor,
89
93
onSurface: AppColor .onSurfaceColor,
94
+ onSurfaceVariant: AppColor .onSurfaceColor,
90
95
surfaceTint: Colors .transparent),
91
96
appBarTheme: const AppBarTheme (
92
97
color: AppColor .surfaceColor,
You can’t perform that action at this time.
0 commit comments