mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-22 07:16:26 +08:00
24 lines
521 B
Dart
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'),
|
|
),
|
|
);
|
|
}
|
|
}
|