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