mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-07-09 12:11:30 +08:00
15 lines
378 B
Dart
15 lines
378 B
Dart
/// @Author: xiaojia.dxj
|
|
/// @Date: 2018-12-24 16:31:09
|
|
/// @Last Modified by: xiaojia.dxj
|
|
/// @Last Modified time: 2018-12-24 16:31:09
|
|
|
|
import './Material/index.dart' as Material;
|
|
///import './Cupertino/index.dart' as Cupertino;
|
|
|
|
List getWidgets() {
|
|
List result = [];
|
|
result.addAll(Material.widgetPoints);
|
|
///result.addAll(Cupertino.widgetPoints);
|
|
return result;
|
|
}
|