Make chessboard fit its window.

This commit is contained in:
Marco 2022-11-19 11:37:15 +01:00
parent 75727980a7
commit b329cb10ad

View File

@ -26,11 +26,11 @@ class ChessApp extends StatelessWidget {
),
),
child: Center(
child: FittedBox(
fit: BoxFit.contain,
child: Column(
children: [
FittedBox(
fit: BoxFit.contain,
child: Container(
Container(
margin: const EdgeInsets.all(20),
child: BlocProvider(
create: (_) => ChessBloc.getInstance(),
@ -43,7 +43,6 @@ class ChessApp extends StatelessWidget {
),
),
),
),
StreamBuilder(
stream: ServerConnection.getInstance().channel.stream,
builder: (context, snapshot) {
@ -53,7 +52,9 @@ class ChessApp extends StatelessWidget {
},
)
],
)),
),
),
),
),
),
);