Flutter

很多客戶喜歡把手機系統字體調的超大,導致版面破版,此方法為強制不去用系統的大小 將此段插入在main.dart中 Widget build(BuildContext context) { return MaterialApp( debugShowChecked ...

Flutter

Thumbnail of post image 083
效果預覽 觸發的按鈕 RaisedButton( color: mainColor, textColor: Colors.white, child: Text('提領', style: TextStyle(color: Colors.white, fontSi ...

Flutter

Card 圖與文字列表(文長短不一) import 'package:flutter/material.dart'; final String imagePath = "assets/images/"; void main() { runApp(new Rob ...

Flutter

Thumbnail of post image 119
常用的幾種輸入框前端樣式 四面框 點擊後會更換重點色 Container( padding: EdgeInsets.fromLTRB(0, 5, 0, 20), child: ConstrainedBox( constraints: BoxConstraint ...

Flutter

Thumbnail of post image 093
我習慣每一頁一開頭都會先簡化圖片的路徑final String image_path = "assets/images/"; 再來做以下的編輯 填圖區塊 (圖片背景) Container( height: 165.0, decoration: BoxDecor ...