This commit is contained in:
parent
bf4e0fa493
commit
43c42ac0d5
@ -149,14 +149,14 @@ class _DetailViewState extends ConsumerState<DetailView> {
|
|||||||
value: 'direct_link',
|
value: 'direct_link',
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
leading: const Icon(Icons.link),
|
leading: const Icon(Icons.link),
|
||||||
title: const Text('Link zum Bild'),
|
title: const Text('Link zur Datei'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
PopupMenuItem(
|
PopupMenuItem(
|
||||||
value: 'post_link',
|
value: 'post_link',
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
leading: const Icon(Icons.article),
|
leading: const Icon(Icons.article),
|
||||||
title: const Text('Link zum Post'),
|
title: const Text('Link zum f0ck'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -182,15 +182,15 @@ class _DetailViewState extends ConsumerState<DetailView> {
|
|||||||
),
|
),
|
||||||
persistentFooterButtons: mediaState.tag != null
|
persistentFooterButtons: mediaState.tag != null
|
||||||
? [
|
? [
|
||||||
InputChip(
|
Center(
|
||||||
|
child: InputChip(
|
||||||
label: Text(mediaState.tag!),
|
label: Text(mediaState.tag!),
|
||||||
//backgroundColor: const Color(0xFF090909),
|
|
||||||
//labelStyle: const TextStyle(color: Colors.white),
|
|
||||||
onDeleted: () {
|
onDeleted: () {
|
||||||
mediaNotifier.setTag(null);
|
mediaNotifier.setTag(null);
|
||||||
Navigator.pop(context);
|
Navigator.pop(context);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
),
|
||||||
]
|
]
|
||||||
: null,
|
: null,
|
||||||
);
|
);
|
||||||
|
@ -61,16 +61,22 @@ class _MediaGridState extends ConsumerState<MediaGrid> {
|
|||||||
return Scaffold(
|
return Scaffold(
|
||||||
key: _scaffoldKey,
|
key: _scaffoldKey,
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: Row(
|
title: GestureDetector(
|
||||||
spacing: 15,
|
child: Row(
|
||||||
|
spacing: 10,
|
||||||
children: [
|
children: [
|
||||||
Image.asset('assets/images/f0ck_small.webp', fit: BoxFit.fitHeight),
|
Image.asset(
|
||||||
Text(
|
'assets/images/f0ck_small.webp',
|
||||||
'fApp',
|
fit: BoxFit.fitHeight,
|
||||||
style: TextStyle(fontSize: 24),
|
|
||||||
),
|
),
|
||||||
|
Text('fApp', style: TextStyle(fontSize: 24)),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
onTap: () {
|
||||||
|
mediaNotifier.setTag(null);
|
||||||
|
_scrollController.jumpTo(0);
|
||||||
|
},
|
||||||
|
),
|
||||||
actions: [
|
actions: [
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: Icon(
|
icon: Icon(
|
||||||
@ -236,13 +242,15 @@ class _MediaGridState extends ConsumerState<MediaGrid> {
|
|||||||
),
|
),
|
||||||
persistentFooterButtons: mediaState.tag != null
|
persistentFooterButtons: mediaState.tag != null
|
||||||
? [
|
? [
|
||||||
InputChip(
|
Center(
|
||||||
|
child: InputChip(
|
||||||
label: Text(mediaState.tag!),
|
label: Text(mediaState.tag!),
|
||||||
onDeleted: () {
|
onDeleted: () {
|
||||||
mediaNotifier.setTag(null);
|
mediaNotifier.setTag(null);
|
||||||
_scrollController.jumpTo(0);
|
_scrollController.jumpTo(0);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
),
|
||||||
]
|
]
|
||||||
: null,
|
: null,
|
||||||
body: RefreshIndicator(
|
body: RefreshIndicator(
|
||||||
|
@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
|||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
# In Windows, build-name is used as the major, minor, and patch parts
|
# In Windows, build-name is used as the major, minor, and patch parts
|
||||||
# of the product and file versions while build-number is used as the build suffix.
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
version: 1.1.3+33
|
version: 1.1.4+34
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.9.0-100.2.beta
|
sdk: ^3.9.0-100.2.beta
|
||||||
|
Loading…
x
Reference in New Issue
Block a user