diff --git a/apps/enmeshed/lib/account/app_drawer/app_drawer.dart b/apps/enmeshed/lib/account/app_drawer/app_drawer.dart index 0afa46e4..c1478175 100644 --- a/apps/enmeshed/lib/account/app_drawer/app_drawer.dart +++ b/apps/enmeshed/lib/account/app_drawer/app_drawer.dart @@ -1,3 +1,5 @@ +import 'dart:math' show min; + import 'package:flutter/material.dart'; import 'drawer_hints_page.dart'; @@ -18,7 +20,7 @@ class _AppDrawerState extends State { @override Widget build(BuildContext context) { - final maxWidth = MediaQuery.sizeOf(context).width * 0.85; + final double maxWidth = min(MediaQuery.sizeOf(context).width * 0.85, 320); return SafeArea( child: Drawer( diff --git a/apps/enmeshed/lib/account/home/widgets/complete_profile_container.dart b/apps/enmeshed/lib/account/home/widgets/complete_profile_container.dart index 5cae51ed..b1c9d929 100644 --- a/apps/enmeshed/lib/account/home/widgets/complete_profile_container.dart +++ b/apps/enmeshed/lib/account/home/widgets/complete_profile_container.dart @@ -62,6 +62,7 @@ class _CompleteProfileContainerState extends State { elevation: 2, clipBehavior: Clip.hardEdge, child: Column( + crossAxisAlignment: CrossAxisAlignment.start, children: [ Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, diff --git a/apps/enmeshed/lib/core/widgets/information_container.dart b/apps/enmeshed/lib/core/widgets/information_container.dart index 608de68b..731774ff 100644 --- a/apps/enmeshed/lib/core/widgets/information_container.dart +++ b/apps/enmeshed/lib/core/widgets/information_container.dart @@ -18,6 +18,7 @@ class InformationContainer extends StatelessWidget { child: Padding( padding: const EdgeInsets.all(16), child: Column( + crossAxisAlignment: CrossAxisAlignment.start, children: [ Row( crossAxisAlignment: CrossAxisAlignment.start,