diff --git a/RELEASE/app-release_version_2_0_6.aab b/RELEASE/app-release_version_2_0_6.aab new file mode 100644 index 0000000..7e469f1 Binary files /dev/null and b/RELEASE/app-release_version_2_0_6.aab differ diff --git a/RELEASE/app-release_version_2_0_6_14.aab b/RELEASE/app-release_version_2_0_6_14.aab new file mode 100644 index 0000000..42e06bd Binary files /dev/null and b/RELEASE/app-release_version_2_0_6_14.aab differ diff --git a/lib/Screens/Menu/menu_view.dart b/lib/Screens/Menu/menu_view.dart index 5f40aba..af4e983 100644 --- a/lib/Screens/Menu/menu_view.dart +++ b/lib/Screens/Menu/menu_view.dart @@ -66,7 +66,7 @@ class _MenuView extends State { return Center( child: GridView.builder( shrinkWrap: true, - gridDelegate: new SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 3, childAspectRatio: kIsWeb ? 1.7 : 1.2), + gridDelegate: new SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 3, childAspectRatio: kIsWeb ? 1.7 : 1.3), itemCount: menuDTO.sections!.length, itemBuilder: (BuildContext context, int index) { return InkWell( @@ -87,8 +87,8 @@ class _MenuView extends State { }, child: Container( decoration: isImageBackground ? boxDecoration(appContext, menuDTO.sections![index], false) : null, - padding: const EdgeInsets.all(12), - margin: EdgeInsets.symmetric(vertical: 8, horizontal: 8), + padding: const EdgeInsets.all(20), + margin: EdgeInsets.symmetric(vertical: 15, horizontal: 15), child: isImageBackground ? Align( alignment: Alignment.bottomRight, child: FractionallySizedBox( @@ -124,7 +124,7 @@ class _MenuView extends State { flex: 7, child: Container( decoration: BoxDecoration( - color: menuDTO.sections![index].imageSource == null ? kBackgroundColor : null, // default color if no image + color: menuDTO.sections![index].imageSource == null && menuDTO.sections![index].type != SectionType.Video ? kBackgroundColor : null, // default color if no image shape: BoxShape.rectangle, image: menuDTO.sections![index].imageSource != null || menuDTO.sections![index].type == SectionType.Video ? new DecorationImage( fit: BoxFit.contain, // contain or cover ?