性久久久久久,性色av浪潮av色欲av,国产日韩精品在线观看,亚洲色成人网一二三区

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

網(wǎng)站百科

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

Flutter 中添加靜態(tài)資源

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

一個(gè)應(yīng)用程序少不了一些靜態(tài)資源,例如:圖片、字體、配置文件等。這些靜態(tài)資源會(huì)打包到程序安裝包中,可以在運(yùn)行時(shí)訪問(wèn)。
Flutter 中添加靜態(tài)資源很簡(jiǎn)單,將靜態(tài)資源放置在任意目錄(通常是根目錄下的 assets 文件夾中),然后在配置文件中 pubspec.yaml 中指定即可。每個(gè) asset 都通過(guò)相對(duì)于 pubspec.yaml 文件所在位置的路徑進(jìn)行標(biāo)識(shí)。asset 的聲明順序是無(wú)關(guān)緊要的。
在構(gòu)建期間,F(xiàn)lutter 將 asset 放置到稱為 asset bundle 的特殊存檔中,應(yīng)用程序可以在運(yùn)行時(shí)通過(guò) AssetBundle 對(duì)象訪問(wèn)。

查看示例代碼。

assets.png

加載文本

每個(gè) Flutter 應(yīng)用程序都有一個(gè) rootBundle 對(duì)象, 可以輕松訪問(wèn)主資源包,也可以直接使用 package:flutter/services.dart 中全局靜態(tài)的rootBundle 對(duì)象來(lái)加載 asset。

但是,建議使用 DefaultAssetBundle.of 來(lái)獲取當(dāng)前 BuildContext 的 AssetBundle。這種方法不是使用應(yīng)用程序構(gòu)建的默認(rèn) asset bundle,而是使父級(jí) widget 在運(yùn)行時(shí)替換的不同的 AssetBundle ,這在本地化或測(cè)試時(shí)很有用。

接下來(lái)以讀取本地 JSON 文件為例進(jìn)行說(shuō)明。

創(chuàng)建 assets/person.json 文件,并寫(xiě)入以下內(nèi)容:

[ { "name": "Tom", "age": 23, "height": 172, "gender": "male" }, { "name": "Jerry", "age": 18, "height": 163, "gender": "male" }, { "name": "Lina", "age": 30, "height": 180, "gender": "female" } ] 

pubspec.yaml 中配置資源:

flutter: assets: - assets/person.json 

接著,創(chuàng)建一個(gè)頁(yè)面,用來(lái)展示 JSON 數(shù)據(jù):

import 'dart:convert' show json;import 'package:flutter/material.dart';class Assets extends StatelessWidget { @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text('Assets'), ), body: new JsonView(), ); } }class JsonView extends StatefulWidget { @override State<StatefulWidget> createState() { return new _JsonViewState(); } }class _JsonViewState extends State<JsonView> { @override Widget build(BuildContext context) { return new FutureBuilder( future: DefaultAssetBundle.of(context).loadString("assets/person.json"), builder: (context, snapshot) { if (snapshot.hasData) { List<dynamic> data = json.decode(snapshot.data.toString());return new ListView.builder( itemCount: data.length, itemBuilder: (BuildContext context, int index) { return new Card( child: new Column( crossAxisAlignment: CrossAxisAlignment.stretch, children: <Widget>[ new Text("Name: ${data[index]["name"]}"), new Text("Age: ${data[index]["age"]}"), new Text("Height: ${data[index]["height"]}"), new Text("Gender: ${data[index]["gender"]}"), ], ), ); }, ); } return new CircularProgressIndicator(); }, ); } } 

這里主要使用了 DefaultAssetBundle.of() 獲取 AssetBundle,然后使用 FutureBuilder 組件顯示異步數(shù)據(jù)。

加載圖片

Flutter 中使用 AssetImage 組件展示圖片。Flutter 會(huì)根據(jù)當(dāng)前設(shè)備的分辨率加載對(duì)應(yīng)的圖片,我們只需要按照特定的目錄結(jié)構(gòu)來(lái)放置圖片,例如:

assets ├── images ├── wechat.png ├── 2.0x ├── wechat.png ├── 3.0x ├── wechat.png 

使用時(shí):

new Image.asset("assets/images/wechat.png")// or new Image( image: new AssetImage("assets/images/wechat.png"), ), 

加載字體

下載字體并在 pubspec.yaml 中配置,這里的配置方式和前面有一點(diǎn)區(qū)別:

fonts: - family: Charmonman fonts: - asset: assets/fonts/Charmonman-Regular.ttf - asset: assets/fonts/Charmonman-Bold.ttf weight: 500 

其中 weight 屬性指定字體的粗細(xì),對(duì)應(yīng) TextStylefontWeight 屬性,會(huì)匹配對(duì)應(yīng)的字體。同理還有 style 屬性,對(duì)應(yīng)的值為 italicnormal。

使用時(shí),通過(guò) TextStyle 指定對(duì)應(yīng)的字體即可:

new Text( "A red flair silhouetted the jagged edge of a wing.", style: new TextStyle( fontFamily: "Charmonman", fontSize: 17.0, fontWeight: FontWeight.w500, ), ) 

使用字體圖標(biāo)

字體圖標(biāo)的使用和普通字體使用沒(méi)太大區(qū)別,只是文本內(nèi)容使用對(duì)應(yīng)圖標(biāo)的 Unicode 碼點(diǎn)即可:

new Text( "\u{e7d7}", style: new TextStyle( fontFamily: "Iconfont", fontSize: 36.0, ), ), 

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

多一份參考,總有益處

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

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

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

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