flutter 按钮(03)

Material widget库中提供了多种按钮Widget如RaisedButton、FlatButton、OutlineButton等,它们都是直接或间接对RawMaterialButton的包装定制,所以他们大多数属性都和RawMaterialButton一样。在介绍各个按钮时我们先介绍其默认外观,而按钮的外观大都可以通过属性来自定义,我们在后面统一介绍这些属性。另外,所有Material 库中的按钮都有如下相同点:

  • 按下时都会有“水波动画”。
  • 有一个onPressed属性来设置点击回调,当按钮按下时会执行该回调,如果不提供该回调则按钮会处于禁用状态,禁用状态不响应用户点击。
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return new MaterialApp(
      title: 'flutter demo',
      home: _home(),
    );
  }
}

class _home extends StatefulWidget {
  @override
  State createState() {
    return _homeState();
  }
}

class _homeState extends State<_home> {
  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return new Scaffold(
      appBar: new AppBar(
        title: Text("title"),
        centerTitle: true,
      ),
      body: new Column(
        children: [
          RaisedButton(
            child: Text("RaisedButton"),
            onPressed: _pressed,//onPressed点击回调 这里设置的是一个空的方法 默认是null,为null时会禁用点击事件
            elevation: 2.0,
            //正常状态下的阴影
            highlightElevation: 4.0,
            //按下时的阴影
            disabledElevation: 0.0,
            // 禁用时的阴影
          ),
          FlatButton(
            child: Text("FlatButton"),
            onPressed: _pressed,
          ),
          OutlineButton(
            child: Text("OutlineButton"),
            onPressed: _pressed,
          ),
          IconButton(
            icon: Icon(Icons.thumb_up),
            onPressed: _pressed,
          ),
          FlatButton(
            child: Text("自定义样式"),
            //child按钮中的内容
            textColor: Colors.white,
            //文字颜色
            disabledTextColor: Colors.red,
            //按钮禁用时的文字颜色
            color: Colors.lightBlue,
            //背景颜色
            disabledColor: Colors.grey,
            //按钮禁用时的背景颜色
            highlightColor: Colors.amber,
            //按钮按下时的背景颜色
            splashColor: Colors.black12,
            //点击时,水波动画中水波的颜色
            padding: EdgeInsets.all(2.0),
            //内边距
            colorBrightness: Brightness.dark,
            ////按钮主题,默认是浅色主题
            shape: RoundedRectangleBorder(
                borderRadius: BorderRadius.circular(4.0)),
            //外形
            onPressed: _pressed,
          ),
        ],
      ),
    );
  }
  void _pressed() {}
}
效果图

你可能感兴趣的:(flutter 按钮(03))