flutter go_router -有没有办法推送两次相同的页面?

nuypyhwy  于 2022-12-19  发布在  Flutter
关注(0)|答案(1)|浏览(202)

我正在使用go_router构建一个应用程序,它可以“虚拟”推送路线(有点像Twitter),可以从页面/a开始,推送/b,然后/c,......然后再次推送/a
当一个页面被推送两次时,assert失败:assert(!keyReservation.contains(key));,确保密钥在Navigator中仅使用一次。
有没有一种方法可以用go_router推送两次相同的页面?
下面是一个小代码片段:

import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';

void main() {
  runApp(const MyApp());
}

final router = GoRouter(
  initialLocation: '/a',
  routes: [
    GoRoute(
      path: '/a',
      builder: (_, __) => const MyWidget(path: '/a'),
    ),
    GoRoute(
      path: '/b',
      builder: (_, __) => const MyWidget(path: '/b'),
    ),
  ],
);

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp.router(
      routeInformationProvider: router.routeInformationProvider,
      routeInformationParser: router.routeInformationParser,
      routerDelegate: router.routerDelegate,
    );
  }
}

class MyWidget extends StatelessWidget {
  const MyWidget({
    required this.path,
    Key? key,
  }) : super(key: key);

  final String path;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(path),
      ),
      body: Center(
          child: Column(
        mainAxisSize: MainAxisSize.min,
        children: [
          TextButton(
            onPressed: () {
              context.push('/a');
            },
            child: const Text('/a'),
          ),
          TextButton(
            onPressed: () {
              context.push('/b');
            },
            child: const Text('/b'),
          ),
        ],
      )),
    );
  }
}

单击带有“/a”的TextButton可触发此问题。

omvjsjqw

omvjsjqw1#

这是go_router(参见this issue)中的一个bug,已在版本4.2.3中解决。
所以现在你应该可以把同一页推两次了。

相关问题