mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-21 14:56:27 +08:00
23 lines
519 B
Dart
23 lines
519 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'),
|
|
),
|
|
);
|
|
}
|
|
}
|