Fix overflow error on intro screen

This commit is contained in:
Shawn 2023-09-05 09:45:59 -06:00
parent b430fc4f1b
commit bc21f55d62

View File

@ -18,7 +18,7 @@ class IntroScreen extends StatefulWidget {
class _IntroScreenState extends State<IntroScreen> { class _IntroScreenState extends State<IntroScreen> {
static const double _imageSize = 250; static const double _imageSize = 250;
static const double _logoHeight = 126; static const double _logoHeight = 126;
static const double _textHeight = 100; static const double _textHeight = 110;
static const double _pageIndicatorHeight = 55; static const double _pageIndicatorHeight = 55;
static List<_PageData> pageData = []; static List<_PageData> pageData = [];