@@ -29,43 +29,44 @@ class PrimaryReaderAppbar extends StackedView<PrimaryReaderAppbarModel> {
2929 PrimaryReaderAppbarModel viewModel,
3030 Widget ? child,
3131 ) {
32- return Container (
33- color: context.theme.appColors.appbarBackground,
34- height: kToolbarHeight,
35- child: Row (
36- mainAxisAlignment: MainAxisAlignment .spaceBetween,
37- children: [
38- InkWell (
39- onTap: onTapSearch,
40- child: Padding (
41- padding: const EdgeInsets .all (16.0 ),
42- child: PhosphorIcon (
43- PhosphorIcons .magnifyingGlass (PhosphorIconsStyle .bold),
44- color: context.theme.appColors.appbarIcon,
45- size: 20.0 ,
46- semanticLabel: 'Search' ,
32+ return SafeArea (
33+ child: Container (
34+ color: context.theme.appColors.appbarBackground,
35+ child: Row (
36+ mainAxisAlignment: MainAxisAlignment .spaceBetween,
37+ children: [
38+ InkWell (
39+ onTap: onTapSearch,
40+ child: Padding (
41+ padding: const EdgeInsets .all (16.0 ),
42+ child: PhosphorIcon (
43+ PhosphorIcons .magnifyingGlass (PhosphorIconsStyle .bold),
44+ color: context.theme.appColors.appbarIcon,
45+ size: 20.0 ,
46+ semanticLabel: 'Search' ,
47+ ),
4748 ),
4849 ),
49- ),
50- ReaderSelectorBtn (
51- readerArea : Area .primary ,
52- isActive : isReaderAreaPopupActive ,
53- onTapBook : onTapBook ,
54- onTapBibleVersion : onTapBibleVersion ,
55- ),
56- InkWell (
57- onTap : onTapMenu,
58- child : Padding (
59- padding : const EdgeInsets . all ( 16.0 ),
60- child : PhosphorIcon (
61- PhosphorIcons . list ( PhosphorIconsStyle .bold) ,
62- color : context.theme.appColors.appbarIcon ,
63- size : 20.0 ,
64- semanticLabel : 'Menu' ,
50+ ReaderSelectorBtn (
51+ readerArea : Area .primary,
52+ isActive : isReaderAreaPopupActive ,
53+ onTapBook : onTapBook ,
54+ onTapBibleVersion : onTapBibleVersion ,
55+ ) ,
56+ InkWell (
57+ onTap : onTapMenu,
58+ child : Padding (
59+ padding : const EdgeInsets . all ( 16.0 ),
60+ child : PhosphorIcon (
61+ PhosphorIcons . list ( PhosphorIconsStyle .bold),
62+ color : context.theme.appColors.appbarIcon ,
63+ size : 20.0 ,
64+ semanticLabel : 'Menu' ,
65+ ) ,
6566 ),
6667 ),
67- ) ,
68- ] ,
68+ ] ,
69+ ) ,
6970 ),
7071 );
7172 }
0 commit comments