摘要:
一、 类 class Greeter { greeting: string; constructor(message: string) { this.greeting = message; } greet() { return "Hello, " + this.greeting; } } let g 阅读全文
摘要:
介绍 https://developer.apple.com/testflight/ 上架流程 https://help.apple.com/app-store-connect/#/devdc42b26b8 1.输入测试信息 https://appstoreconnect.apple.com/ 进入 阅读全文
摘要:
structure and navigation Appbar BottomNavigationBar Drawer MaterialApp Scaffold SliverAppBar TabBar TabBarView WidgetsApp 阅读全文
摘要:
Divider 分割线 Column( children: [ Container( color: Colors.amber, child: const Center( child: Text('上'), ), ), Divider( //分割线颜色 color: Colors.black, //前 阅读全文
摘要:
一、material风格 # Buttons MaterialButton\RaisedButton\FlatButton\IconButton\FloatingActionButton\OutlineButton\DropdownButton # Dialogs, alerts, and pane 阅读全文
摘要:
https://flutter.github.io/cupertino_icons/ 阅读全文
摘要:
在iosapp同级路径下 flutter create -t module --org com.example my_flutter 在iosapp的跟路径下 pod init 在生成的podfile文件中添加 flutter_application_path = '../my_flutter' l 阅读全文
摘要:
flutter添加到android原生 1.创建一个flutter module flutter create -t module --org com.example my_flutter 2.在原生build.gradle下 android { //... compileOptions { sou 阅读全文
摘要:
阅读全文
摘要:
一、flutter调用原生方法 1.调用android flutter端 class _MyHomePageState extends State<MyHomePage> { static const MethodChannel methodChannel = MethodChannel("chan 阅读全文