mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-23 15:56:25 +08:00
26 lines
777 B
Dart
26 lines
777 B
Dart
/// Created with Android Studio.
|
|
/// User: 一晟
|
|
/// Date: 2018/12/27
|
|
/// Time: 下午2:50
|
|
/// email: zhu.yan@alibaba-inc.com
|
|
/// target: Navigation 的示例
|
|
|
|
import "package:flutter/material.dart";
|
|
|
|
import '../../../model/widget.dart';
|
|
import 'BottomNavigationBar/index.dart' as BottomNavigationBar;
|
|
import 'BottomNavigationBarItem/index.dart' as BottomNavigationBarItem;
|
|
|
|
List<WidgetPoint> widgetPoints = [
|
|
WidgetPoint(
|
|
name: 'BottomNavigationBar',
|
|
routerName: BottomNavigationBar.Demo.routeName,
|
|
buildRouter: (BuildContext context) => BottomNavigationBar.Demo(),
|
|
),
|
|
WidgetPoint(
|
|
name: 'BottomNavigationBarItem',
|
|
routerName: BottomNavigationBarItem.Demo.routeName,
|
|
buildRouter: (BuildContext context) => BottomNavigationBarItem.Demo(),
|
|
)
|
|
];
|