Fixed bugs: overflows on location view, made location view scrollable
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user