06 2020 档案
摘要:当我们想showSnackBar的时候,需要通过Scaffold.of(context)得到Scaffold。但是如果这个context用错的话,flutter就会抛出错误。下面我们通过代码仔细看一下。 issue code import 'package:flutter/material.dart
阅读全文
摘要:在Flutter中说起Button,floatingActionButton用的也非常的多。今天我们就来学习一下。 Simple Example import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class
阅读全文
摘要:如果你想灵活控制Flex容器(Row, Column)中子组件中的间隔,可以考虑使用Spacer。下面以Row为例子,来为它的子组件添加间距。 ####use Spacer import 'package:flutter/material.dart'; void main() => runApp(M
阅读全文
摘要:记录一下在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
阅读全文
摘要:Dart is an open source, structured programming language for creating complex, browser-based web applications. first dart demo main() { var d = "Dart";
阅读全文
摘要:应用中切换深色主题和暗色主题是比较常见的操作,今天我们就来学习一下Flutter中动态的切换主题。 Simple Theme import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp ext
阅读全文