全屏浏览
缩小浏览
回到页首
上一页 1 2 3 4 5 6 ··· 26 下一页
摘要: ####1. string type main(List<String> args) { String name = "huhx"; changIt(name); print('after: $name'); // after: huhx } void changIt(String name) { 阅读全文
posted @ 2020-07-23 15:57 huhx 阅读(656) 评论(0) 推荐(0) 编辑
摘要: delete webstorm Besides we delete the Webstorm App, We also need to delete related config or log directory as following. ~/Library/Preferences/ ~/Libr 阅读全文
posted @ 2020-07-23 09:15 huhx 阅读(287) 评论(0) 推荐(0) 编辑
摘要: At least, there are three ways to create the singleton object with dart. 1. factory constructor class SingletonOne { SingletonOne._privateConstructor( 阅读全文
posted @ 2020-07-23 09:00 huhx 阅读(666) 评论(0) 推荐(0) 编辑
摘要: Native Query throw exception dto code import lombok.Value; @Value public class IdsOnly { Integer id; String otherId; } repository public interface Tes 阅读全文
posted @ 2020-07-03 10:15 huhx 阅读(2595) 评论(0) 推荐(0) 编辑
摘要: copy text to clipboard Clipboard.setData(ClipboardData(text: string)); since Flutter1.9, you can use SelectableText, it enable the copy feature. get t 阅读全文
posted @ 2020-07-03 09:46 huhx 阅读(620) 评论(0) 推荐(0) 编辑
摘要: 整理一下比较有意思的类QQ的UI实现。Nothing that has meaning is easy. Easy doesn’t enter into grown-up life. darken the background image 很多场景下,我们需要背景图片上面显示文字。如果是白色字体的话 阅读全文
posted @ 2020-07-03 09:36 huhx 阅读(607) 评论(0) 推荐(0) 编辑
摘要: 当我们想showSnackBar的时候,需要通过Scaffold.of(context)得到Scaffold。但是如果这个context用错的话,flutter就会抛出错误。下面我们通过代码仔细看一下。 issue code import 'package:flutter/material.dart 阅读全文
posted @ 2020-06-29 16:30 huhx 阅读(803) 评论(0) 推荐(0) 编辑
摘要: 在Flutter中说起Button,floatingActionButton用的也非常的多。今天我们就来学习一下。 Simple Example import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class 阅读全文
posted @ 2020-06-29 12:21 huhx 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 如果你想灵活控制Flex容器(Row, Column)中子组件中的间隔,可以考虑使用Spacer。下面以Row为例子,来为它的子组件添加间距。 ####use Spacer import 'package:flutter/material.dart'; void main() => runApp(M 阅读全文
posted @ 2020-06-29 11:07 huhx 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 记录一下在mac上面使用Typora和uPic来发表博客的过程,图床用的是阿里Oss。We all, whether we know it or not, are fighting to make the kind of a world that we should like. install uP 阅读全文
posted @ 2020-06-05 10:17 huhx 阅读(662) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 26 下一页