Files
2019-08-13 20:38:46 +08:00

13 lines
296 B
Dart

import 'package:flutter_web/material.dart';
import '../../../../model/widget.dart';
import './Table/index.dart' as Table;
List<WidgetPoint> widgetPoints = [
WidgetPoint(
name: 'Table',
routerName: Table.Demo.routeName,
buildRouter: (BuildContext context) => Table.Demo(),
),
];