使用命名路由导航

导航到新屏幕并返回 食谱中,您学习了如何通过创建新路由并将其推送到 Navigator 来导航到新屏幕。

但是,如果您需要在应用程序的许多部分导航到同一个屏幕,这种方法会导致代码重复。解决方案是定义一个命名路由,并使用命名路由进行导航。

要使用命名路由,请使用 Navigator.pushNamed() 函数。此示例复制了原始食谱中的功能,演示了如何使用以下步骤使用命名路由

  1. 创建两个屏幕。
  2. 定义路由。
  3. 使用 Navigator.pushNamed() 导航到第二个屏幕。
  4. 使用 Navigator.pop() 返回第一个屏幕。

1. 创建两个屏幕

#

首先,创建两个要使用的屏幕。第一个屏幕包含一个按钮,用于导航到第二个屏幕。第二个屏幕包含一个按钮,用于导航回第一个屏幕。

飞镖
import 'package:flutter/material.dart';

class FirstScreen extends StatelessWidget {
  const FirstScreen({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('First Screen'),
      ),
      body: Center(
        child: ElevatedButton(
          onPressed: () {
            // Navigate to the second screen when tapped.
          },
          child: const Text('Launch screen'),
        ),
      ),
    );
  }
}

class SecondScreen extends StatelessWidget {
  const SecondScreen({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Second Screen'),
      ),
      body: Center(
        child: ElevatedButton(
          onPressed: () {
            // Navigate back to first screen when tapped.
          },
          child: const Text('Go back!'),
        ),
      ),
    );
  }
}

2. 定义路由

#

接下来,通过向 MaterialApp 构造函数提供附加属性来定义路由:initialRouteroutes 本身。

initialRoute 属性定义应用程序应从哪个路由开始。routes 属性定义可用的命名路由以及在导航到这些路由时要构建的小部件。

飞镖
MaterialApp(
  title: 'Named Routes Demo',
  // Start the app with the "/" named route. In this case, the app starts
  // on the FirstScreen widget.
  initialRoute: '/',
  routes: {
    // When navigating to the "/" route, build the FirstScreen widget.
    '/': (context) => const FirstScreen(),
    // When navigating to the "/second" route, build the SecondScreen widget.
    '/second': (context) => const SecondScreen(),
  },
)

3. 导航到第二个屏幕

#

有了小部件和路由,可以使用 Navigator.pushNamed() 方法触发导航。这告诉 Flutter 构建在 routes 表中定义的小部件并启动屏幕。

FirstScreen 小部件的 build() 方法中,更新 onPressed() 回调

飞镖
// Within the `FirstScreen` widget
onPressed: () {
  // Navigate to the second screen using a named route.
  Navigator.pushNamed(context, '/second');
}

4. 返回第一个屏幕

#

要返回到第一个屏幕,请使用 Navigator.pop() 函数。

飞镖
// Within the SecondScreen widget
onPressed: () {
  // Navigate back to the first screen by popping the current route
  // off the stack.
  Navigator.pop(context);
}

交互式示例

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

void main() {
  runApp(
    MaterialApp(
      title: 'Named Routes Demo',
      // Start the app with the "/" named route. In this case, the app starts
      // on the FirstScreen widget.
      initialRoute: '/',
      routes: {
        // When navigating to the "/" route, build the FirstScreen widget.
        '/': (context) => const FirstScreen(),
        // When navigating to the "/second" route, build the SecondScreen widget.
        '/second': (context) => const SecondScreen(),
      },
    ),
  );
}

class FirstScreen extends StatelessWidget {
  const FirstScreen({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('First Screen'),
      ),
      body: Center(
        child: ElevatedButton(
          // Within the `FirstScreen` widget
          onPressed: () {
            // Navigate to the second screen using a named route.
            Navigator.pushNamed(context, '/second');
          },
          child: const Text('Launch screen'),
        ),
      ),
    );
  }
}

class SecondScreen extends StatelessWidget {
  const SecondScreen({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Second Screen'),
      ),
      body: Center(
        child: ElevatedButton(
          // Within the SecondScreen widget
          onPressed: () {
            // Navigate back to the first screen by popping the current route
            // off the stack.
            Navigator.pop(context);
          },
          child: const Text('Go back!'),
        ),
      ),
    );
  }
}