IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Flutter--TextButton简析以及分装 -> 正文阅读

[移动开发]Flutter--TextButton简析以及分装

import 'package:flutter/material.dart';

class UIButton extends StatelessWidget {

  final Widget child;
  final VoidCallback onPressed;

  final Key key;
  final VoidCallback onLongPress;
  final Clip clipBehavior;

  final Color foregroundColor;
  final Color backgroundColor;
  final Color shadowColor;
  final Color overlayColor;
  final double elevation;

  final EdgeInsetsGeometry padding;
  final Size minimumSize;
  final BorderSide side;
  final bool enableInkEffect;
  final BorderRadius borderRadius;

  UIButton({
    this.key,
    @required this.child,
    @required this.onPressed,
    this.onLongPress,
    this.foregroundColor,
    this.backgroundColor,
    this.clipBehavior,
    this.shadowColor,
    this.elevation = 0,
    this.padding,
    this.minimumSize,
    this.side,
    this.enableInkEffect,
    this.overlayColor,
    this.borderRadius
  });


  @override
  Widget build(BuildContext context) {

    ButtonStyle style = ButtonStyle(
      foregroundColor: MaterialStateProperty.all(foregroundColor), //会修改按钮文字颜色,优先级高于textStyle
      backgroundColor: MaterialStateProperty.all(backgroundColor),
      elevation: MaterialStateProperty.all(elevation), //按钮悬浮效果高度
      shadowColor: MaterialStateProperty.all(shadowColor), //按钮悬浮后的阴影颜色,需配合elevation,单独使用无效
      padding: MaterialStateProperty.all(padding), //就算不设置也有个默认值, 要想没有边距需要设置为0
      // fixedSize: 按钮大小
      minimumSize: MaterialStateProperty.all(minimumSize ?? Size(0, 0)), //按钮最小尺寸,设为(0,0)就是child的尺寸
      shape: MaterialStateProperty.all(RoundedRectangleBorder(
          borderRadius: borderRadius ?? BorderRadius.circular(8.0),
          side: side
      ),),
      // side: MaterialStateProperty.all(side), 使用shape里面的,这个优先级比shape里面的高
      // tapTargetSize: MaterialTapTargetSize.padded
      enableFeedback: false,
      splashFactory: enableInkEffect == false ? NoSplash.splashFactory : null,  //禁用按钮水波纹
      overlayColor: MaterialStateProperty.all(overlayColor), //触摸后水波纹的颜色,位于child底部,背景色之上
    );

    return TextButton(
      key: key,
      onPressed: onPressed,
      onLongPress: onLongPress,
      clipBehavior: clipBehavior ?? Clip.none,
      child: child,
      style: style,
    );
  }


}

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-09-29 10:24:09  更:2021-09-29 10:24:49 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/27 12:07:09-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码