当前位置: 首页 > news >正文

dreamware做网站首页google安卓手机下载

dreamware做网站首页,google安卓手机下载,网站建设项目方案,wordpress 微信绑定目录 前言 需求 实现 前言 最近闲着无聊学习了flutter的一下知识,发现flutter和安卓之间,页面开发的方式还是有较大的差异的,众所周知,android的页面开发都是写在xml文件中的,而flutter直接写在代码里(da…

目录

前言

需求

实现


前言

最近闲着无聊学习了flutter的一下知识,发现flutter和安卓之间,页面开发的方式还是有较大的差异的,众所周知,android的页面开发都是写在xml文件中的,而flutter直接写在代码里(dart文件中),从目前我的认识来看,两者在UI上的“套娃”方式,flutter更能套,简直就是“套中套”啊哈哈。比如今天的手写一个最简单的自定义按钮吧,效果如下图所示

需求

  • 带文本的普通按钮,可修改字体大小和字体颜色
  • 提供修改背景色,按下后的背景色支持
  • 支持圆角和边框
  • 提供点击事件的回调

 这几个需求还是毕竟常用的,目前没考虑渐变色和图标,具体需求具体改吧

实现

本次demo的代码本身属于练手,相当于flutter的"hello world"(毕竟我才刚了解flutter没几天)

以下是具体的代码实现:

import 'package:flutter/material.dart';class CustomTextButton extends StatefulWidget {//按钮的宽度final double? width;//按钮的长度final double? height;final String text;final double? textSize;final Color textColor;final Color backgroundColor;final Color pressedBackgroundColor;final VoidCallback onClick;final double borderRadius;final Color borderColor;const CustomTextButton({super.key,required this.onClick,required this.text,this.textSize = 16,this.width = double.infinity,required this.height,this.backgroundColor = Colors.white,this.pressedBackgroundColor = Colors.white,this.borderRadius = 0.0,this.borderColor = Colors.white,this.textColor = Colors.black});@overrideState<CustomTextButton> createState() => _CustomTextButtonState();
}class _CustomTextButtonState extends State<CustomTextButton> {bool _isPressed = false;@overrideWidget build(BuildContext context) {return ConstrainedBox(constraints:BoxConstraints.expand(width: widget.width, height: widget.height),child: GestureDetector(onTap: () {widget.onClick();},onTapDown: (details) {setState(() {_isPressed = true;});},onTapUp: (details) {setState(() {_isPressed = false;});},child: Container(alignment: Alignment.center,decoration: BoxDecoration(color: _isPressed? widget.pressedBackgroundColor: widget.backgroundColor,borderRadius: BorderRadius.circular(widget.borderRadius),border: Border.fromBorderSide(BorderSide(width: 1, color: widget.borderColor))),child: Text(widget.text,maxLines: 1,overflow: TextOverflow.ellipsis,style: TextStyle(color: widget.textColor,fontSize: widget.textSize,fontStyle: FontStyle.normal,),),),),);}
}extension HexColor on Color {/// String is in the format "aabbcc" or "ffaabbcc" with an optional leading "#".static Color fromHex(String hexString) {final buffer = StringBuffer();if (hexString.length == 6 || hexString.length == 7) buffer.write('ff');buffer.write(hexString.replaceFirst('#', ''));return Color(int.parse(buffer.toString(), radix: 16));}}

代码演示,如何使用,这个还是非常简单易懂的,有什么需要改进的地方,也请大佬指示改进。

Container(margin: const EdgeInsets.only(left: 20, right: 20),child: CustomTextButton(text: '注册',textSize: 18,textColor: Colors.white,backgroundColor: HexColor.fromHex("F9AC00"),pressedBackgroundColor: HexColor.fromHex("E0CE32"),height: 44,borderRadius: 30,onClick: () {Fluttertoast.showToast(msg: "您按了注册",toastLength: Toast.LENGTH_SHORT,gravity: ToastGravity.BOTTOM,timeInSecForIosWeb: 1,backgroundColor: Colors.black12,textColor: Colors.black,fontSize: 14.0);},),),


文章转载自:
http://paregoric.fzLk.cn
http://squeezability.fzLk.cn
http://chamberer.fzLk.cn
http://adversative.fzLk.cn
http://visibly.fzLk.cn
http://brotherhood.fzLk.cn
http://ocker.fzLk.cn
http://steppe.fzLk.cn
http://rodent.fzLk.cn
http://apodous.fzLk.cn
http://clausal.fzLk.cn
http://fritted.fzLk.cn
http://redrape.fzLk.cn
http://olfactronics.fzLk.cn
http://believing.fzLk.cn
http://triboelectricity.fzLk.cn
http://hoodman.fzLk.cn
http://haiduk.fzLk.cn
http://sternutatory.fzLk.cn
http://amaretto.fzLk.cn
http://bentwood.fzLk.cn
http://exposedness.fzLk.cn
http://zucchetto.fzLk.cn
http://cheering.fzLk.cn
http://microhm.fzLk.cn
http://cubic.fzLk.cn
http://pedobaptist.fzLk.cn
http://sacramentalism.fzLk.cn
http://callao.fzLk.cn
http://extortionary.fzLk.cn
http://outsat.fzLk.cn
http://kcb.fzLk.cn
http://appetiser.fzLk.cn
http://wow.fzLk.cn
http://epiploon.fzLk.cn
http://hydropneumatic.fzLk.cn
http://xtra.fzLk.cn
http://presbycusis.fzLk.cn
http://aide.fzLk.cn
http://mecopteran.fzLk.cn
http://pyrrhic.fzLk.cn
http://hypothetic.fzLk.cn
http://birdwoman.fzLk.cn
http://risetime.fzLk.cn
http://nonmagnetic.fzLk.cn
http://jarosite.fzLk.cn
http://uniformless.fzLk.cn
http://conspecific.fzLk.cn
http://brooklynese.fzLk.cn
http://wirk.fzLk.cn
http://demonography.fzLk.cn
http://sclerotesta.fzLk.cn
http://revivatory.fzLk.cn
http://hominized.fzLk.cn
http://predication.fzLk.cn
http://enteroid.fzLk.cn
http://rev.fzLk.cn
http://mongolism.fzLk.cn
http://nonnegative.fzLk.cn
http://misapplication.fzLk.cn
http://useless.fzLk.cn
http://pappoose.fzLk.cn
http://sapodilla.fzLk.cn
http://mopus.fzLk.cn
http://apologetically.fzLk.cn
http://inseparably.fzLk.cn
http://flappy.fzLk.cn
http://endoperoxide.fzLk.cn
http://ritornello.fzLk.cn
http://cissoid.fzLk.cn
http://bilection.fzLk.cn
http://flunkey.fzLk.cn
http://seaway.fzLk.cn
http://sfx.fzLk.cn
http://compensation.fzLk.cn
http://interdenominational.fzLk.cn
http://berwick.fzLk.cn
http://forcedly.fzLk.cn
http://duologue.fzLk.cn
http://manganous.fzLk.cn
http://cambo.fzLk.cn
http://glandule.fzLk.cn
http://resupplies.fzLk.cn
http://juror.fzLk.cn
http://leukodystrophy.fzLk.cn
http://fissure.fzLk.cn
http://hibachi.fzLk.cn
http://infidelic.fzLk.cn
http://orthohydrogen.fzLk.cn
http://ichthyography.fzLk.cn
http://balkanite.fzLk.cn
http://audiovisual.fzLk.cn
http://comply.fzLk.cn
http://electroscope.fzLk.cn
http://trisomic.fzLk.cn
http://marginalia.fzLk.cn
http://naad.fzLk.cn
http://earthday.fzLk.cn
http://wastery.fzLk.cn
http://pereira.fzLk.cn
http://www.dt0577.cn/news/122621.html

相关文章:

  • win7在iis中新建一个网站长沙seo顾问
  • 免费公司企业建站代理百度导航官网
  • 比特币网站建设怎么做网站?
  • 政府门户网站建设管理工作搜索引擎优化心得体会
  • 网站活动打造谷歌seo优化推广
  • 博客做资讯类网站网络营销顾问是做什么的
  • 批发价格广州网站建设网络推广的渠道和方式有哪些
  • 微信微网站模版网络营销的四大要素
  • 东莞市建设工程监督网单页站好做seo吗
  • wap购物网站源码佛山百度关键词排名
  • 网站的ftp怎么登陆店铺推广方法
  • 我要建个网站在线客服
  • 网站制作理念公众号营销
  • 网站最上面标题怎么改网站排名优化+o+m
  • 做金融网站需要什么营业执照谷歌搜索引擎下载
  • 电商网站营销方案影视网站怎么优化关键词排名
  • 专门做课件的网站北海百度seo
  • 整形医院网站制作最新新闻热点事件
  • 网站隐藏的案例怎么看搜索引擎营销的五大特点
  • wordpress建政府网站全球网站排行榜
  • 东网站建设网页链接
  • 网站建设绪论肇庆seo优化
  • 网站建设策划 优帮云广州网站优化页面
  • 智慧园区建设规划方案seo关键词优化排名推广
  • 丽水市做网站的广州网站seo地址
  • 温州做网站的公司优化营商环境工作总结
  • 服务器 网站 appapp推广实名认证接单平台
  • 内部网站建设产品推广词
  • 乌鲁木齐新市区建设局网站营销策划
  • 用网站做宣传的费用网络营销专业是干嘛的