flutter: Move gamePageTopMargin to AppTheme
This commit is contained in:
parent
d8ef72fe39
commit
917f5d182e
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue