前言 概述 Native App Web App JQuery Mobile AmazeUI 其他H5 UI框架 Hybird App Flutter Ionic React Native Weex 总结 前言 目前来说…
分类:flutter
四、Flutter for iOS Dev
1️⃣Flutter中的UIView相当于什么? 在iOS中,您在UI中创建的大部分内容都是使用视图对象完成的,这些视图对象是UIView类的实例。这些可以充当其他UIView类的容器,它们构…
关于flutter中,bad utf-8 encoding 0xb4这个报错
听说有的人有,有的人多编译几次就行了,还有的在other setting中设置utf-8格式编码可以解决,我的是都不能,但是我知道是java编译的问题, 在调用platform Chanel的时候,需要更改继承Flutt…
七、Flutter学习资源
文档: https://docs.flutter.io/ Github: https://github.com/flutter/flutter StackOverflow: https://…
Python之字典的特性及常用方法
字典的定义 #定义一个字典,方式一: s = {} print(s,type(s)) {} <class 'dict'> #字典:key-value 键值对,方式二: s = { 'linux':[100,9…
Flutter常用widget Text
Text: 该widget可以创建一个带格式的文本 用法eg: new Text( 'Hello, $_name! How are you?', textAlign: TextAlign.center, overflow…
Flutter Color的使用
Flutter 系列文章 总体目录 4种定义Color的方式: Color c = const Color(0xFF42A5F5);//16进制的ARGB Color c = const Color.fromARGB(0…
Flutter Run出现Error connecting to the service protocol: HttpException: Connection closed before full
Error connecting to the service protocol: HttpException: Connection closed before full header was received, ur…
Flutter 路由跳转
Flutter 中,一切皆 Widget !!!! Remember: Screens are Just Widgets™. 今天来学习一下 Flutter 中常用的一些跳转方式。在安卓中我们常用的跳转是通…
Android Flutter windows版 第一个程序运行
1. 下载Git ,然后 获取Flutter SDK git clone -b beta https://gi…
Flutter错误和解决办法
Flutter使用遇到的问题: 1,Expected a key while parsing a block mapping Error on line 30, column 4 of pubspec.yaml: Exp…
Flutter基础(一)--库的使用
以下内容为自学笔记,若有幸被大神看到,望指正其不准,补充其不足。万分感谢!!! 一、Flutter中库的简介 在Dart语言中:所有的后缀名为.dart文件都是库包。 在Flutter工程中,lib包为根目录,packa…