Tweak styling on intro page

This commit is contained in:
Shawn 2023-01-03 22:30:27 -07:00
parent 7276274eff
commit 849cbca040

View File

@ -243,12 +243,14 @@ class _Page extends StatelessWidget {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Semantics( return Semantics(
liveRegion: true, liveRegion: true,
child: Padding(
padding: EdgeInsets.symmetric(horizontal: $styles.insets.md),
child: Column(children: [ child: Column(children: [
Spacer(), Spacer(),
Gap(_IntroScreenState._imageSize + _IntroScreenState._logoHeight), Gap(_IntroScreenState._imageSize + _IntroScreenState._logoHeight),
SizedBox( SizedBox(
height: _IntroScreenState._textHeight, height: _IntroScreenState._textHeight,
width: _IntroScreenState._imageSize + $styles.insets.md, width: 400,
child: StaticTextScale( child: StaticTextScale(
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
@ -263,6 +265,7 @@ class _Page extends StatelessWidget {
Gap(_IntroScreenState._pageIndicatorHeight), Gap(_IntroScreenState._pageIndicatorHeight),
Spacer(flex: 2), Spacer(flex: 2),
]), ]),
),
); );
} }
} }