mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-07-06 17:09:33 +08:00
14 lines
371 B
Dart
14 lines
371 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;
|
|
} |