w
h
y
?
y
o
u
a
r
e
h
e
r
e
?
打开pubspec.yaml
找到dependencies
然后这一部分就是插件的位置
然后右上角Pub get
感觉和CocoaPods差不多
接着就可以导入来用了
在theme设置
12splashColor: Colors.transparent,highlightColor: Colors.transparent,
就像这样
12345theme: ThemeData( primarySwatch: Colors.blue,
...
新建一个文件PlatformUtils.dart
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647import 'dart:io';import '
...
1flutter config --enable-windows-desktop
重启就可以创建Windows端了
1flutter config --enable-macos-desktop
重启就可以创建macOS端了
增加一个类型就好了
1type: BottomNavigationBarType.fixed,
12345678910Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, title: 'Flutter Demo',
...
Android Studio
右键Reformat Code with dartfmt
VSCode
右键
中文 -> 格式化文档
英文 -> Format Document