校园二手交易平台
1.开发平台 Pixel 2
2.开发环境 Android API 30
3.运行命令 flutter run --no-sound-null-safety
1.lib/config/http/http_options.dart 2.修改自己的localhost或者云服务器地址
1、虚拟机访问本地电脑的端口时,不能用127.0.0.1或者localhost 2、应该用为 'http://10.0.2.2:9000' 中的10.0.2.2
1、params: {"passport": passport, "pwd": ecryptoMd5(password)}); 2、后台数据库密码以后改成Md5格式时,要改回来才能传输正确的密码登录
1、 如果加载本地的图片,需要注意的是在pubspec.yaml中的asset要写上路径前缀
1、在下面的state函数中,只有在init、build等重写@ovveride函数中,才能使用widget.调用参数
Short answer: Instead of the pre-null-safety operations
var foo = List(); // Now error var bar = List(n); // Now error var baz = List(0); // Now error use the following:
var foo = []; // Always the recommended way.
var bar = List.filled(1, 0); // Not filled with null
s.
var baz = List.empty();
在命令行 运行 flutter build apk --no-sound-null-safety