Flutter

flutter入门到放弃2

2023-08-17  本文已影响0人  xiaotimel

flutter控件

  1. Text 文本,Text没有点击事件,需要使用GestureDetector包裹
    GestureDetector(
  onTap: () {
    // 处理点击事件的逻辑
    print('Text clicked!');
  },
  child: Text(
    'Click me',
    style: TextStyle(
      fontSize: 16.0,
      color: Colors.blue,
      decoration: TextDecoration.underline,
    ),
  ),
)
  1. FloatingActionButton 悬浮按钮
  2. ElevateButtom 按钮
    Style :样式布局
    onPressed 点击事件
    Child :显示按钮文本
  3. 线性布局
    Row 水平布局
    Column 垂直布局
  4. Stack 帧布局跟 Android FragmentLayout一样
  5. Container矩形布局
上一篇下一篇

猜你喜欢

热点阅读