python程序打包成可执行文件
安装PYinstaller库 pip install pyinstaller PYiinstalller常用参数 通用参数 参数名描述说明-h显示帮助无-v显示版本号无–distpath生成文件放在哪里默认:当前目录的dist文件夹内–workpath生...
Java Jdk下载地址集合[2021-11-26 ]
PHP,Dart,Java 面向对象对比
Flutter ERate 评分组件
介绍 「ERate」 组件是 「Flutter Element」 组件系列中的评分组件。 引入 在 「pubspec.yaml」 中依赖 element_ui: ^lastversion 最新的版本到pub上查看,pub地址:https://pub.dev/pack...
Flutter LinearProgressIndicator[线性进度条组件]
截图: 代码: //线性进度条 LinearProgressIndicator( color: Colors.blue, backgroundColor: Colors.amber, value: 0.5, // valueColor: TrainHoppingAnimation(), ),
Flutter 应用程序中的 QuickActions 桌面快捷方式
引入pub: dependencies: quick_actions: ^1.0.2 地址: https://pub.dev/packages/quick_actions https://pub.flutter-io.cn/packages/quick_actions 使用: import 'package:flutter/material...
Android权限介绍
Flutter 十六进制颜色(#E6A919)转Color
Flutter 组件国际化
pubspec添加依赖想要使用 flutter_localizations 的话,我们需要在 pubspec.yaml 文件中添加它作为依赖: flutter_localizations: #组件国际化 sdk: flutter设置MaterialApp在localizationsDe...
使用 adb WiFi连接手机
1.先用数据线连接电脑。 2.查看手机IP:adb shell ifconfig wlan0 其中inet addr 就是手机ip地址。 3.添加端口号:adb tcpip 5556 5556是端口可以自定义 4.连接手机:adb connect 手机IP:5...