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