mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-22 07:16:26 +08:00
22 lines
363 B
Dart
22 lines
363 B
Dart
/**
|
|
* Created with Android Studio.
|
|
* User: 三帆
|
|
* Date: 31/01/2019
|
|
* Time: 18:13
|
|
* email: sanfan.hx@alibaba-inc.com
|
|
* tartget: xxx
|
|
*/
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
class Demo extends StatefulWidget {
|
|
_Demo createState() => _Demo();
|
|
}
|
|
|
|
class _Demo extends State<Demo> {
|
|
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|