mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-24 00:33:29 +08:00
17 lines
406 B
Dart
17 lines
406 B
Dart
/// @Author: 一凨
|
|
/// @Date: 2018-12-22 20:37:45
|
|
/// @Last Modified by: 一凨
|
|
/// @Last Modified time: 2018-12-22 20:43:15
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import '../../../model/widget.dart';
|
|
import './Tab/index.dart' as Tab;
|
|
|
|
List<WidgetPoint> widgetPoints = [
|
|
WidgetPoint(
|
|
name:'Tab',
|
|
routerName: Tab.Demo.routeName,
|
|
buildRouter: (BuildContext context) => Tab.Demo(),
|
|
),
|
|
]; |