Files
yifeng.yl 2e9702ec7b add file
2019-01-08 20:39:13 +08:00

24 lines
521 B
Dart

/*
* @Author: 一凨
* @Date: 2018-12-10 21:32:07
* @Last Modified by: 一凨
* @Last Modified time: 2018-12-15 16:26:20
*/
import 'package:flutter/material.dart';
class ScrollableDemo extends StatefulWidget {
_ScrollableDemoState createState() => _ScrollableDemoState();
}
class _ScrollableDemoState extends State<ScrollableDemo> {
@override
Widget build(BuildContext context) {
return Container(
child: Container(
height: 100.0,
child: Text('暂无Demo'),
),
);
}
}