flutter: Move gamePageTopMargin to AppTheme

This commit is contained in:
Calcitem 2021-04-06 00:22:52 +08:00
parent d8ef72fe39
commit 917f5d182e
3 changed files with 2 additions and 4 deletions

View File

@ -119,9 +119,6 @@ RouteObserver<PageRoute> routeObserver = RouteObserver<PageRoute>();
final globalScaffoldKey = GlobalKey<ScaffoldState>();
class SanmillApp extends StatefulWidget {
//
static const StatusBarHeight = 28.0;
@override
_SanmillAppState createState() => _SanmillAppState();
}

View File

@ -102,6 +102,7 @@ class AppTheme {
static var moveHistoryTextStyle =
TextStyle(fontSize: 18, height: 1.5, color: moveHistoryTextColor);
static double gamePageTopMargin = 28.0;
static double boardMargin = 10.0;
static double boardScreenPaddingH = 10.0;
static double boardBorderRadius = 5.0;

View File

@ -531,7 +531,7 @@ class _GamePageState extends State<GamePage> with RouteAware {
);
return Container(
margin: EdgeInsets.only(top: SanmillApp.StatusBarHeight),
margin: EdgeInsets.only(top: AppTheme.gamePageTopMargin),
child: Column(
children: <Widget>[
iconRow,