flutter 使用GridView时顶部有空白间距
padding: EdgeInsets.zero,
GridView childAspectRatio 动态计算,在不同设备保持高度一致
double cellWidth = ((MediaQuery.of(context).size.width - allHorizontalPadding) / columnCount);
double desiredCellHeight = 200;
double childAspectRatio = cellWidth / desiredCellHeight;
Flutter禁止GridView滑动
physics: const NeverScrollableScrollPhysics()
flutter极光推送 角标显示问题
///
/// 设置应用 Badge(小红点)
///
/// @param {Int} badge
///
/// 注意:如果是 Android 手机,目前仅支持华为手机
///
Future setBadge(int badge) async {
print(flutter_log + "setBadge:");
await _channel.invokeMethod('setBadge', {"badge": badge});
}
flutter-jpush 这个插件目前只支持华为手机,如若需要显示角标问题,需兼容原生。
解决方案:
flutter-jpush集成文档
兼容原生显示角标方案一
兼容原生显示角标方案二
极光官方文档