Files
2019-02-19 16:34:41 +08:00

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(),
),
];