一区二区三区欧美日韩-一区二区三区欧美-一区二区三区免费在线视频-一区二区三区免费在线观看-久久精品店-久久精品第一页

歡迎您光臨深圳塔燈網(wǎng)絡(luò)科技有限公司!
電話圖標(biāo) 余先生:13699882642

網(wǎng)站百科

為您解碼網(wǎng)站建設(shè)的點點滴滴

Flutter從零到∞學(xué)習(xí)筆記

發(fā)表日期:2018-10 文章編輯:小燈 瀏覽次數(shù):1652

  1. 有狀態(tài)widget:StatefulWidget和無狀態(tài)widget:StatelessWidget 前者不需要實現(xiàn)Widget build(BuildContext context)。

    具體的選擇取決于widget是否需要管理一些狀態(tài)

  2. 在Dart語言中使用下劃線前綴標(biāo)識符,會強制其變成私有的。

  3. Icons.favorite Icons類里面有很多默認(rèn)圖標(biāo)

  4. isOdd 是否奇數(shù) 2.isOdd -> false 1.isOdd -> true

  5. pushSaved “”開頭的自動轉(zhuǎn)成私有(方法和變量)

  6. 導(dǎo)航欄添加按鈕和事件

 @overrideWidget build(BuildContext context) {return new Scaffold(appBar: new AppBar(title: new Text('Startup Name Generator'),actions: <Widget>[// AppBar 添加一個按鈕 樣式為list 事件是_pushSavednew IconButton(icon: new Icon(Icons.list), onPressed: _pushSaved)],),body: _buildSuggestions(),);}// tooltip 長時間按下的提示文字IconButton(icon: new Icon(Icons.search), tooltip: 'Search', onPressed: null)
  1. 界面跳轉(zhuǎn)方法
Navigator.of(context).push(new MaterialPageRoute(builder: (context) {},),); 
  1. 一行函數(shù)寫法
// 多行void main() {runApp(new Center(child: new Text('Hello, world!',textDirection: TextDirection.ltr,),))}// 一行void main() => runApp(new MyApp()); 
  1. // Material 是UI呈現(xiàn)的“一張紙”

  2. 請確保在pubspec.yaml文件中,將flutter的值設(shè)置為:uses-material-design: true。這允許我們可以使用一組預(yù)定義Material icons。

  3. Row(橫向排列)和Column(縱向排列)

child: new Row(children: <Widget>[new ...,new ...,new ...,],) 
child: new Column(children: <Widget>[new ...,new ...,new ...,],), 
  1. cached_network_image 圖片占位和淡入淡出

  2. push

Navigator.push(context,new MaterialPageRoute(builder: (context) => new 新界面),);// 如果需要傳值:新界面({Key key, @required this.接收字段的名字}) : super(key: key);popNavigator.pop(context); 
  1. dio網(wǎng)絡(luò)請求https://github.com/flutterchina/dio

  2. import 'dart:convert'; // package將響應(yīng)內(nèi)容轉(zhuǎn)化為一個json Map

  3. // 使用fromJson工廠函數(shù),將json Map 轉(zhuǎn)化為一個Post對象

new Post.fromJson(json); 
  1. future參數(shù)是一個異步的網(wǎng)絡(luò)請求

  2. import 'dart:io'; // 添加請求的headers

  3. // 長連接

import 'package:web_socket_channel/io.dart';import 'package:multi_server_socket/multi_server_socket.dart'; 
  1. // 網(wǎng)絡(luò)請求
Future<Post> fetchPost() async {final response = await http.get('[http://jsonplaceholder.typicode.com/posts/1](http://jsonplaceholder.typicode.com/posts/1)');final responseJson = json.decode(response.body);return new Post.fromJson(responseJson);}// 請求添加headers/*Future<Post> fetchPost() async {final response = await http.get('[https://jsonplaceholder.typicode.com/posts/1](https://jsonplaceholder.typicode.com/posts/1)',headers: {HttpHeaders.AUTHORIZATION: "Basic your_api_token_here"},);final json = jsonDecode(response.body);return new Post.fromJson(json);}*/new FutureBuilder<Post>(future: fetchPost(),builder: (context, snapshot) {return new CircularProgressIndicator();}) 
  1. 長連接
// 連接長連接IOWebSocketChannel.connect('[ws://echo](ws://echo/).[websocket.org](http://websocket.org/)’)// 接收消息new StreamBuilder(stream: widget.channel.stream,builder: (context, snapshot) {return new Padding(child: new Text(snapshot.hasData ? '${snapshot.data}' : ''),padding: const EdgeInsets.symmetric(vertical: 20.0));})// 發(fā)送消息widget.channel.sink.add(_textController.text);// 關(guān)閉長連接widget.channel.sink.close(); 
  1. 在Flutter中添加資源和圖片

https://flutterchina.club/assets-and-images/

  1. 標(biāo)準(zhǔn)widget:
Container添加 padding, margins, borders, background color, 或?qū)⑵渌b飾添加到widget.GridView將 widgets 排列為可滾動的網(wǎng)格.ListView將widget排列為可滾動列表Stack將widget重疊在另一個widget之上.Material Components:Card將相關(guān)內(nèi)容放到帶圓角和投影的盒子中。ListTile將最多3行文字,以及可選的行前和和行尾的圖標(biāo)排成一行 
  1. pubspec.yaml中添加字體 注意縮進對齊 注意縮進對齊 注意縮進對齊
-asset 路徑是與pubspec.yaml平級的文件路徑flutter:# Include the Material Design fonts.uses-material-design: truefonts:- family: Rock Saltfonts:# [https://fonts.google.com/specimen/Rock+Salt](https://fonts.google.com/specimen/Rock+Salt)- asset: fonts/Arial-Unicode.ttf- family: VT323fonts:# [https://fonts.google.com/specimen/VT323](https://fonts.google.com/specimen/VT323)- asset: fonts/Arial-Unicode.ttf- family: Ewertfonts:# [https://fonts.google.com/specimen/Ewert](https://fonts.google.com/specimen/Ewert)- asset: fonts/Ewert-Regular.ttf 
  1. 比如一個關(guān)閉按鈕在
new Row(mainAxisAlignment: MainAxisAlignment.end, children: <Widget>[new FlatButton(onPressed: () {}, child: Icon(Icons.close))],); 
  1. 分割線
new Divider(color: Colors.lightBlue,)
  1. 自定義Icon
new Image.asset(“圖片路徑", width: 20.0, height: 20.0,) 
  1. 按鈕寬高
001、new Padding(padding: new EdgeInsets.fromLTRB(48.0, 20.0, 48.0, 20.0),child: new Row(children: <Widget>[new Expanded(child:new RaisedButton(onPressed: (){},//設(shè)置控件的高度child: new Padding(padding: new EdgeInsets.fromLTRB(0.0, 10.0, 0.0, 10.0),child: new Text("登錄",style: TextStyle(color: Colors.white)),),color: Colors.brown,),),],),),002、new Container(width: MediaQuery.of(context).size.width - 48 * 2 ,padding: new EdgeInsets.only(top: 40.0),child: new RaisedButton(onPressed: (){},//設(shè)置控件的高度child: new Padding(padding: new EdgeInsets.fromLTRB(0.0, 10.0, 0.0, 10.0),child: new Text("登錄",style: TextStyle(color: Colors.white)),),color: Colors.brown,),),003、Widget _bigButton(String text, double lSpace, double rSpace) {return new Container(width: MediaQuery.of(context).size.width - lSpace - rSpace,height: 48.0,margin: new EdgeInsets.only(left: lSpace, right: rSpace),color: Colors.white54,padding: new EdgeInsets.only(top: 0.0),child: new RaisedButton(onPressed: (){print(text);},child: new Padding(padding: new EdgeInsets.fromLTRB(0.0, 0.0, 0.0, 0.0),child: new Text(text,style: TextStyle(color: Colors.white)),),color: Colors.brown,),);} 
  1. 設(shè)備尺寸
MediaQuery.of(context).size.width 
  1. 設(shè)備像素密度
MediaQuery.of(context).devicePixelRatio 
  1. 狀態(tài)欄高度
MediaQuery.of(context).padding.top 
  1. 擔(dān)心鍵盤擋住控件,可以使用 SingleChildScrollView,將SingleChildScrollView當(dāng)做容器。

  2. 一個超級簡單界面

import 'package:flutter/material.dart';class RegisterPage extends StatelessWidget {@overrideWidget build(BuildContext context) {return new Scaffold(backgroundColor: Colors.black,body: new RegisterWidget(),);}}class RegisterWidget extends StatefulWidget {RegisterWidgetState createState() => RegisterWidgetState();}class RegisterWidgetState extends State<RegisterWidget> {@overrideWidget build(BuildContext context) {return new Text("RegisterPage", style: TextStyle(color: Colors.white),);}} 
  1. Flutter 按鈕總結(jié)
· InkWell // 純文字按鈕· OutLineButton // 邊框按鈕· IconButton// icon按鈕·
  1. import 'package:flutter/services.dart';
TextFieldinputFormatters: <TextInputFormatter> [WhitelistingTextInputFormatter.digitsOnly,], 
  1. 以上已經(jīng)添加

  2. 驗證碼按鈕

new Positioned(child: new Container(width: 80.0,height: 27.0,alignment: Alignment.center,decoration: new BoxDecoration(border: new Border.all(color: Colors.white,width: 1.0,),borderRadius: new BorderRadius.circular(4.0),),child: InkWell(child: _mText(_verifyStr, 12.0),onTap: () {},),)), 
  1. 倒計時方法
@overridevoid dispose() {super.dispose();_cancelTimer();}_startTimer() {if (_verifyStr == '重新發(fā)送' || _verifyStr == '獲取驗證碼') {_seconds = 5;_timer = new Timer.periodic(new Duration(seconds: 1), (timer) {if (_seconds == 0) {_cancelTimer();return;}_seconds--;_verifyStr = '$_seconds(s)';setState(() {});if (_seconds == 0) {_verifyStr = '重新發(fā)送';}});}}_cancelTimer() {_timer?.cancel();} 
  1. 富文本拼接: 協(xié)議
Widget _protocolWidget() {return new Container(child: new Row(children: <Widget>[new GestureDetector(onTap: () {print("選擇");},child: Icon(Icons.add_alert, color: Colors.white),),new Text.rich(new TextSpan(text: '我已閱讀并同意',style: new TextStyle(fontSize: 12.0,color: Colors.grey[500],fontWeight: FontWeight.w400,),children: [new TextSpan(recognizer: new TapGestureRecognizer()..onTap = () {print("《燎原用戶服務(wù)協(xié)議》");},text: "《燎原用戶服務(wù)協(xié)議》",style: new TextStyle(fontSize: 14.0,color: Color(0XFFB57A36),fontWeight: FontWeight.w400,),)])),],));} 
  1. 陰影、圓角
new Card(elevation: 4.0,shape: new RoundedRectangleBorder(borderRadius: BorderRadius.only(topLeft: Radius.circular(16.0),topRight: Radius.circular(16.0),bottomLeft: Radius.circular(12.0),bottomRight: Radius.circular(2.0),)),child: new IconButton(icon: Icon(Icons.add), onPressed: () {}),) 
  1. YYTabbarWidget
import 'package:flutter/material.dart';// with AutomaticKeepAliveClientMixinclass YYTabbarWidget extends StatefulWidget {List<Widget> tabItems = [];Widget title;List<Widget> tabViews = [];PageController pageController;final ValueChanged<int> onPageChanged;final Widget drawer;YYTabbarWidget({Key key,this.drawer,this.tabItems,this.title,this.tabViews,this.pageController,this.onPageChanged,}) : super(key: key);_YYTabbarWidgetState createState() => _YYTabbarWidgetState(drawer, title, tabItems, tabViews, pageController, onPageChanged);}class _YYTabbarWidgetState extends State<YYTabbarWidget> with SingleTickerProviderStateMixin {final Widget _title;final List<Widget> _tabViews;final List<Widget> _tabItems;final ValueChanged<int> _onPageChanged;final Widget _drawer;_YYTabbarWidgetState(this._drawer,this._title,this._tabItems,this._tabViews,this._pageController,this._onPageChanged,) : super();TabController _tabController;PageController _pageController;@overridevoid initState() {super.initState();_tabController = new TabController(length: _tabItems.length, vsync: this);}@overridevoid dispose() {_tabController.dispose();super.dispose();}_renderTab() {print(_tabItems);List<Widget> list = new List();for (int i = 0; i < _tabItems.length; i++) {list.add(new FlatButton(onPressed: () {print(i);_pageController.jumpTo(MediaQuery.of(context).size.width * i);}, child: _tabItems[I],));}return list;}@overrideWidget build(BuildContext context) {return new Scaffold(drawer: _drawer,appBar: new AppBar(title: _title,),body: new PageView(controller: _pageController,children: _tabViews,onPageChanged: (index) {_tabController.animateTo(index);_onPageChanged?.call(index);},),bottomNavigationBar: new Material(color: Colors.white,child: new TabBar(indicatorPadding: new EdgeInsets.only(top: 0.0),controller: _tabController,tabs: _renderTab(),indicatorColor: Colors.red,),),);}} 
  1. ListView 添加刷新,當(dāng)數(shù)量少的時候不能滾動
physics: new AlwaysScrollableScrollPhysics(), // 讓ListView一直可以滾動 
  1. tabView切換 子界面都會調(diào)用initState
解決:AutomaticKeepAliveClientMixinclass HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin {@overridebool get wantKeepAlive => true;} 
  1. 路有跳轉(zhuǎn)
///不帶參數(shù)的路由表跳轉(zhuǎn)Navigator.pushNamed(context,routeName);///跳轉(zhuǎn)新頁面并且替換,比如登錄頁跳轉(zhuǎn)主頁Navigator.pushReplacementNamed(context,routeName);///跳轉(zhuǎn)到新的路由,并且關(guān)閉給定路由的之前的所有頁面Navigator.pushNamedAndRemoveUntil(context,'/calendar',ModalRoute.withName('/'));///帶參數(shù)的路由跳轉(zhuǎn),并且監(jiān)聽返回Navigator.push(context,newMaterialPageRoute(builder:(context)=>newNotifyPage())).then((res){///獲取返回處理}); 
  1. flutter lib
cupertino_icons: ^0.1.2#iconflutter_spinkit: "^2.1.0"# load more loadingimport 'package:flutter_spinkit/flutter_spinkit.dart';dio: x.x.x#無網(wǎng)絡(luò)請求import 'package:dio/dio.dart'; 
  1. dio網(wǎng)絡(luò)請求示例
_dioRequest() async {Dio dio = new Dio();Response response;try {String url;var params; // 請求參數(shù)Options options; // 配置:超時,請求頭,請求類型等response = await dio.request(url, data: params, options: options);} on DioError catch(e) {// 請求出錯時,返回一個DioError對象}} 
  1. build_runner的使用
1、在根目錄運行2、一次性創(chuàng)建.g.dart文件 使用build 此時目錄內(nèi)不能有.g.dart文件3、watch是監(jiān)聽 有model類的文件創(chuàng)建 自動創(chuàng)建.g.dart文件flutter packages pub run build_runner buildflutter packages pub run build_runner watch 

本頁內(nèi)容由塔燈網(wǎng)絡(luò)科技有限公司通過網(wǎng)絡(luò)收集編輯所得,所有資料僅供用戶學(xué)習(xí)參考,本站不擁有所有權(quán),如您認(rèn)為本網(wǎng)頁中由涉嫌抄襲的內(nèi)容,請及時與我們聯(lián)系,并提供相關(guān)證據(jù),工作人員會在5工作日內(nèi)聯(lián)系您,一經(jīng)查實,本站立刻刪除侵權(quán)內(nèi)容。本文鏈接:http://www.junxiaosheng.cn/17619.html
相關(guān)APP開發(fā)
 八年  行業(yè)經(jīng)驗

多一份參考,總有益處

聯(lián)系深圳網(wǎng)站公司塔燈網(wǎng)絡(luò),免費獲得網(wǎng)站建設(shè)方案及報價

咨詢相關(guān)問題或預(yù)約面談,可以通過以下方式與我們聯(lián)系

業(yè)務(wù)熱線:余經(jīng)理:13699882642

Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.    

主站蜘蛛池模板: 99久免费精品视频在线观看2| 入禽太深免费观看| 麻花传媒XK在线观看| 日韩精品卡1卡2三卡四卡乱码| 亚洲中文字幕永久在线全国| AV天堂AV亚洲啪啪久久无码| 国内精品视频在线播放一区| 欧美派对xxxhdparty| 亚洲一区二区三区高清网| 成年人免费在线视频观看| 久青草国产在视频在线观看| 小黄飞二人转| CHINA学生白嫩| 久久不射视频| 小SAO货边洗澡边CAO你动漫| 不用播放器的黄| 免费国产黄线在线播放| 亚洲精品123区| 国产国产乱老熟视频网站| 欧美午夜精品一区二区蜜桃| 2019香蕉在线观看直播视频| 伊人影院蕉久| 凌馨baby| 性欧美videosex18嫩| xxnx日本| 免费在线亚洲视频| 欧美 另类 美腿 亚洲 无码 | 在线观看免费精品国产| 国产小视频免费看| 羞羞影院男女爽爽影院尤物 | 亚洲欧美中文字幕5发布| 国产午夜精品久久理论片| 天堂在线亚洲精品专区| 俄罗斯美女破处| 日韩AV成人无码久久精品老人| 白嫩美女直冒白浆| av狼新人开放注册区| 少女10声大哥喊退色狼| 99精品小视频| 嗯啊快拔出来我是你老师视频| 最美女人体内射精一区二区|