forked from lxm_flutter/FlutterUnit
69 lines
1.7 KiB
Dart
69 lines
1.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
/// create by 张风捷特烈 on 2020-04-19
|
|
/// contact me by email 1981462002@qq.com
|
|
/// 说明:
|
|
|
|
// {
|
|
// "widgetId": 83,
|
|
// "name": 'OverflowBox基本使用',
|
|
// "priority": 1,
|
|
// "subtitle":
|
|
// "【child】 : 孩子组件 【Widget】\n"
|
|
// "【minWidth】 : 最小宽 【double】\n"
|
|
// "【minHeight】 : 最小高 【double】\n"
|
|
// "【maxHeight】 : 最大高 【double】\n"
|
|
// "【maxWidth】 : 最大宽 【double】\n"
|
|
// "【alignment】 : 对齐方式 【AlignmentGeometry】",
|
|
// }
|
|
class CustomOverflowBox extends StatefulWidget {
|
|
@override
|
|
_CustomOverflowBoxState createState() => _CustomOverflowBoxState();
|
|
}
|
|
|
|
class _CustomOverflowBoxState extends State<CustomOverflowBox> {
|
|
var _text = '';
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var box = OverflowBox(
|
|
alignment: Alignment.center,
|
|
minHeight: 50,
|
|
minWidth: 50,
|
|
maxWidth: 200,
|
|
maxHeight: 120,
|
|
child: Container(
|
|
color: Colors.orange,
|
|
child: Text(_text),
|
|
),
|
|
// child: Text("张风"),
|
|
);
|
|
return Column(
|
|
children: <Widget>[
|
|
Container(
|
|
color: Colors.grey.withAlpha(33),
|
|
width: 100,
|
|
height: 100,
|
|
child: box),
|
|
_buildInput()
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _buildInput() {
|
|
return Padding(
|
|
padding: const EdgeInsets.all(18.0),
|
|
child: TextField(
|
|
decoration: InputDecoration(
|
|
border: OutlineInputBorder(),
|
|
hintText: '请输入',
|
|
),
|
|
onChanged: (v) {
|
|
setState(() {
|
|
_text = v;
|
|
});
|
|
},
|
|
),
|
|
);
|
|
}
|
|
}
|