mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-21 23:06:33 +08:00
13 lines
292 B
Dart
13 lines
292 B
Dart
import 'package:flutter/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(),
|
|
),
|
|
];
|