mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-07-15 03:04:25 +08:00
15 lines
373 B
Dart
15 lines
373 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 Cupertion;
|
|
List getWidgets() {
|
|
List result = [];
|
|
result.addAll(Material.widgetPoints);
|
|
result.addAll(Cupertion.widgetPoints);
|
|
return result;
|
|
} |