中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Flutter中怎么實現局部路由

發布時間:2021-08-07 15:05:59 來源:億速云 閱讀:212 作者:Leah 欄目:編程語言

Flutter中怎么實現局部路由,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

Navigator的使用無非3個屬性

initialRoute: 初始路由  onGenerateRoute: 匹配路由  onUnknownRoute: 404

在實現層面

首先:Navigator的高度為infinity。如果直接父級非最上級也是infinity會產生異常,例如,Scaffold -> Column -> Navigator。所以:Navigator需要附件限制高度,例如:Scaffold -> Column -> Container(height: 300) -> Navigator

然后:在onGenerateRoute屬性中,使用第一個BuildContext參數,能夠在MaterialApp未設置route的情況下使用Navigator.pushNamed(nContext, '/efg');跳到對應的子路由中。

最后:Navigator執行尋找路由順序是 initialRoute -> onGenerateRoute -> onUnknownRoute,這個和React的Route是類似的。

最后附上源碼

import 'package:flutter/material.dart';class NavigatorPage extends StatefulWidget { @override _NavigatorPageState createState() => _NavigatorPageState();}class _NavigatorPageState extends State<NavigatorPage> { @override Widget build(BuildContext context) {  return Scaffold(   appBar: AppBar(    title: Text('Navigator'),   ),   body: Column(    children: <Widget>[     Text('Navigator的高度為infinity'),     Text('如果直接父級非最上級也是infinity會產生異常'),     Container(      height: 333,      color: Colors.amber.withAlpha(111),      child: Navigator( // Navigator       initialRoute: '/abc',       onGenerateRoute: (val) {        RoutePageBuilder builder;        switch (val.name) {         case '/abc':          builder = (BuildContext nContext, Animation<double> animation, Animation<double> secondaryAnimation) => Column(           // 并沒有在 MaterialApp 中設定 /efg 路由           // 因為Navigator的特性 使用nContext 可以跳轉 /efg           children: <Widget>[            Text('呵呵呵'),            RaisedButton(             child: Text('去 /efg'),             onPressed: () {              Navigator.pushNamed(nContext, '/efg');             },            )           ],          );         break;         case '/efg':          builder = (BuildContext nContext, Animation<double> animation, Animation<double> secondaryAnimation) => Row(           children: <Widget>[            RaisedButton(             child: Text('去 /hhh'),             onPressed: () {              Navigator.pushNamed(nContext, '/hhh');             },            )           ],          );         break;         default:          builder = (BuildContext nContext, Animation<double> animation, Animation<double> secondaryAnimation) => Center(           child: RaisedButton(            child: Text('去 /abc'),            onPressed: () {             Navigator.pushNamed(nContext, '/abc');            },           )          );        }        return PageRouteBuilder(         pageBuilder: builder,         // transitionDuration: const Duration(milliseconds: 0),        );       },       onUnknownRoute: (val) {        print(val);       },       observers: <NavigatorObserver>[]      ),     ),     Text('Navigator執行尋找路由順序'),     Text('initialRoute'),     Text('onGenerateRoute'),     Text('onUnknownRoute'),    ],   ),  ); }}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

湘阴县| 赣榆县| 上杭县| 清水县| 锡林郭勒盟| 宣化县| 南平市| 邹平县| 桐乡市| 彩票| 太白县| 喀喇| 安多县| 泰州市| 社会| 东乡县| 山阳县| 乌兰浩特市| 丰台区| 温州市| 福鼎市| 郯城县| 武平县| 射洪县| 拉孜县| 桓仁| 崇信县| 聂荣县| 绿春县| 澄迈县| 宁城县| 朔州市| 若羌县| 遵义县| 兴宁市| 东乡县| 乃东县| 文登市| 庄浪县| 勃利县| 辰溪县|