Fixed width problem in choose game view

This commit is contained in:
2025-12-06 17:23:20 +01:00
parent 10aad47124
commit 3d12f0c160

View File

@@ -49,15 +49,15 @@ class _ChooseGameViewState extends State<ChooseGameView> {
),
centerTitle: true,
),
body: Container(
decoration: CustomTheme.standardBoxDecoration,
padding: const EdgeInsets.all(10),
child: Column(
body: Column(
children: [
CustomSearchBar(
Padding(
padding: const EdgeInsets.symmetric(horizontal: 10),
child: CustomSearchBar(
controller: searchBarController,
hintText: 'Game Name',
),
),
const SizedBox(height: 5),
Expanded(
child: ListView.builder(
@@ -79,7 +79,6 @@ class _ChooseGameViewState extends State<ChooseGameView> {
),
],
),
),
);
}
}