Fixed bugs: overflows on location view, made location view scrollable

This commit is contained in:
Konstantin Kollar
2022-09-06 12:53:53 +02:00
parent e93dc0f771
commit 9f4b99c5f9
4 changed files with 52 additions and 43 deletions
@@ -13,8 +13,11 @@ class ManageSingleLocation extends StatelessWidget {
child: Padding(
padding: const EdgeInsets.all(10),
child: Row(children: [
Text(name, style: Theme.of(context).textTheme.headline5),
const Spacer(),
Expanded(
child: Padding(
padding: const EdgeInsets.only(right: 12),
child: Text(name,
style: Theme.of(context).textTheme.headline5))),
GestureDetector(
onTap: () => delete(name),
child: const Icon(Icons.delete_sharp))