首页
壁纸
关于
Search
1
IObit Uninstaller 注册码
2,122 阅读
2
与元素类型 "application" 相关联的属性 "tools:replace" 的前缀 "tools" 未绑定。
336 阅读
3
常用的开源API记录
181 阅读
4
flutter 隐藏中间省略号
177 阅读
5
诗集收藏•明:陈曦/高启
148 阅读
默认
开发
随记
工具
游戏
番剧
关于猫的随笔
登录
Search
路过的假面骑士
累计撰写
87
篇文章
累计收到
2
条评论
首页
栏目
默认
开发
随记
工具
游戏
番剧
关于猫的随笔
页面
壁纸
关于
搜索到
87
篇与
的结果
2023-02-27
GetX框架的snackbar
if (dateTime == null || DateTime.now().difference(dateTime!) > Duration(seconds: 2)) { dateTime = DateTime.now(); Get.snackbar( '', '', titleText: Text( '再按一次退出', style: TextStyle( color: appColor.white, fontSize: 15, fontWeight: FontWeight.bold), ), messageText: Text( '消息', style: TextStyle( color: appColor.white, fontSize: 12, fontWeight: FontWeight.bold, ), ), snackPosition: SnackPosition.TOP, barBlur: 5, icon: Align( alignment: Alignment.center, child: SvgPicture.asset( myImages.LogoWhite, width: 20, height: 20, ), ), ); return false; } return true; },
2023年02月27日
9 阅读
0 评论
0 点赞
2023-02-20
正则匹配文中是否有加密货币
getTextTokenName({required String text}) { List cryptoNames = []; String str = "$text"; RegExp r = RegExp(r"$[a-zA-Z]*");Iterable matches = r.allMatches(text); for (Match m in matches) {cryptoNames.add(m.group(0)!.substring(1)); print(cryptoNames);} return cryptoNames;}
2023年02月20日
19 阅读
0 评论
0 点赞
2023-02-14
Flutter 使用辅助线
debugPaintSizeEnabled = true; //显示辅助线(开发使用)
2023年02月14日
29 阅读
0 评论
0 点赞
2023-02-10
FLutter 失去键盘输入焦点
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; getKeyboardLosesFocus(BuildContext context) { SystemChannels.textInput.invokeMapMethod('TextInput.hide'); FocusScope.of(context).unfocus(); }
2023年02月10日
23 阅读
0 评论
0 点赞
2023-02-09
flutter 隐藏中间省略号
class systemOverflowTextCenter extends StatelessWidget { final String text; final Color? color; const systemOverflowTextCenter({Key? key, required this.text, this.color}) : super(key: key); @override Widget build(BuildContext context) { String? overText; overText = text.replaceRange( text.length - (text.length - 4), text.length - 4, '......'); return Text( overText, style: GoogleFonts.notoSans( color: color != null ? color : appColor.white, fontWeight: FontWeight.bold), ); } }
2023年02月09日
177 阅读
0 评论
0 点赞
1
...
5
6
7
...
18