minor fixes
This commit is contained in:
parent
8a014888a6
commit
246e697d9d
3 changed files with 87 additions and 82 deletions
|
@ -46,6 +46,8 @@ class FilterBar extends StatelessWidget implements PreferredSizeWidget {
|
|||
final label = filter.label;
|
||||
return ConstrainedBox(
|
||||
constraints: const BoxConstraints(maxWidth: maxChipWidth),
|
||||
child: Tooltip(
|
||||
message: label,
|
||||
child: OutlineButton(
|
||||
onPressed: () {},
|
||||
borderSide: BorderSide(
|
||||
|
@ -73,6 +75,7 @@ class FilterBar extends StatelessWidget implements PreferredSizeWidget {
|
|||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
separatorBuilder: (context, index) => const SizedBox(width: 8),
|
||||
|
|
|
@ -38,10 +38,11 @@ class DebugPageState extends State<DebugPage> {
|
|||
return MediaQueryDataProvider(
|
||||
child: Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('Info'),
|
||||
title: const Text('Debug'),
|
||||
),
|
||||
body: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
body: SafeArea(
|
||||
child: ListView(
|
||||
padding: const EdgeInsets.all(8),
|
||||
children: [
|
||||
const Text('Settings'),
|
||||
Text('collectionGroupFactor: ${settings.collectionGroupFactor}'),
|
||||
|
@ -97,6 +98,7 @@ class DebugPageState extends State<DebugPage> {
|
|||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ class FullscreenTopOverlay extends StatelessWidget {
|
|||
OverlayButton(
|
||||
scale: scale,
|
||||
child: IconButton(
|
||||
icon: Icon(OMIcons.share),
|
||||
icon: const Icon(OMIcons.share),
|
||||
onPressed: () => onActionSelected?.call(FullscreenAction.share),
|
||||
tooltip: 'Share',
|
||||
),
|
||||
|
@ -50,7 +50,7 @@ class FullscreenTopOverlay extends StatelessWidget {
|
|||
OverlayButton(
|
||||
scale: scale,
|
||||
child: IconButton(
|
||||
icon: Icon(OMIcons.delete),
|
||||
icon: const Icon(OMIcons.delete),
|
||||
onPressed: () => onActionSelected?.call(FullscreenAction.delete),
|
||||
tooltip: 'Delete',
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue