v1.1.23+53
All checks were successful
Flutter Schmutter / build (push) Successful in 3m40s

- bye go_router
This commit is contained in:
2025-06-12 11:39:31 +02:00
parent 16ebc51e77
commit dff9cda829
9 changed files with 173 additions and 94 deletions

View File

@ -114,8 +114,8 @@ class EndDrawer extends StatelessWidget {
ListTile(
title: const Text('Einstellungen'),
onTap: () {
Navigator.pop(context);
_showMsg('wip', context);
//context.go('/settings');
Navigator.pushReplacementNamed(context, '/settings');
},
),
ListTile(

View File

@ -1,7 +1,6 @@
import 'package:flutter/material.dart';
import 'package:cached_network_image/cached_network_image.dart';
import 'package:go_router/go_router.dart';
import 'package:f0ckapp/models/mediaitem_model.dart';
@ -14,7 +13,7 @@ class MediaTile extends StatelessWidget {
Widget build(BuildContext context) {
return InkWell(
onTap: () {
context.push('/${item.id}', extra: true);
Navigator.pushNamed(context, '/${item.id}');
},
child: Stack(
fit: StackFit.expand,