mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-20 22:36:34 +08:00
19 lines
506 B
Dart
19 lines
506 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_go/model/widget.dart';
|
|
import './Stack/index.dart' as Stack;
|
|
import './IndexedStack/index.dart' as IndexedStack;
|
|
|
|
List<WidgetPoint> widgetPoints = [
|
|
WidgetPoint(
|
|
name: 'Stack',
|
|
routerName: Stack.Demo.routeName,
|
|
buildRouter: (BuildContext context) => Stack.Demo(),
|
|
),
|
|
WidgetPoint(
|
|
name: 'IndexedStack',
|
|
routerName: IndexedStack.Demo.routeName,
|
|
buildRouter: (BuildContext context) => IndexedStack.Demo(),
|
|
),
|
|
];
|