提交 00bf6349 authored 作者: Kevin's avatar Kevin

升级至flutter 2.0

上级 94fbf371
## [1.0.0]
* TODO: 升级至flutter 2.0
* TODO: 处理了空安全
## [0.6.3]
* TODO: 指定back_button_interceptor依赖
## [0.6.2]
* TODO: 指定back_button_interceptor依赖
## [0.6.1] ## [0.6.1]
* TODO: CupertinoPopoverDirection添加了left和right * TODO: CupertinoPopoverDirection添加了left和right
......
...@@ -6,6 +6,12 @@ ...@@ -6,6 +6,12 @@
Usage Add this to your package's pubspec.yaml file: Usage Add this to your package's pubspec.yaml file:
Flutter >=2.0
``` yaml
dependencies:
cool_ui: "^1.0.0"
```
Flutter >=1.17 Flutter >=1.17
``` yaml ``` yaml
dependencies: dependencies:
......
...@@ -5,7 +5,9 @@ export "FLUTTER_APPLICATION_PATH=F:\TestCode\cool_ui\cool_ui\example" ...@@ -5,7 +5,9 @@ export "FLUTTER_APPLICATION_PATH=F:\TestCode\cool_ui\cool_ui\example"
export "FLUTTER_TARGET=lib\main.dart" export "FLUTTER_TARGET=lib\main.dart"
export "FLUTTER_BUILD_DIR=build" export "FLUTTER_BUILD_DIR=build"
export "SYMROOT=${SOURCE_ROOT}/../build\ios" export "SYMROOT=${SOURCE_ROOT}/../build\ios"
export "OTHER_LDFLAGS=$(inherited) -framework Flutter"
export "FLUTTER_FRAMEWORK_DIR=F:\flutter\bin\cache\artifacts\engine\ios"
export "FLUTTER_BUILD_NAME=1.0.0" export "FLUTTER_BUILD_NAME=1.0.0"
export "FLUTTER_BUILD_NUMBER=1" export "FLUTTER_BUILD_NUMBER=1"
export "DART_OBFUSCATION=false"
export "TRACK_WIDGET_CREATION=false"
export "TREE_SHAKE_ICONS=false"
export "PACKAGE_CONFIG=.packages"
...@@ -9,7 +9,7 @@ class TestKeyboard extends StatelessWidget{ ...@@ -9,7 +9,7 @@ class TestKeyboard extends StatelessWidget{
return mediaQuery.size.width / 3 / 2 * 2; return mediaQuery.size.width / 3 / 2 * 2;
} }
final KeyboardController controller ; final KeyboardController controller ;
const TestKeyboard({this.controller}); const TestKeyboard({required this.controller});
static register(){ static register(){
CoolKeyboard.addKeyboard(TestKeyboard.inputType,KeyboardConfig(builder: (context,controller, params){ CoolKeyboard.addKeyboard(TestKeyboard.inputType,KeyboardConfig(builder: (context,controller, params){
...@@ -70,17 +70,14 @@ class TestKeyboard extends StatelessWidget{ ...@@ -70,17 +70,14 @@ class TestKeyboard extends StatelessWidget{
); );
} }
Widget buildButton(String title,{String value}){ Widget buildButton(String title,{String? value}){
if(value == null){
value = title;
}
return Container( return Container(
color: Colors.white, color: Colors.white,
child: GestureDetector( child: GestureDetector(
behavior: HitTestBehavior.translucent, behavior: HitTestBehavior.translucent,
child: Center(child: Text(title),), child: Center(child: Text(title),),
onTap: (){ onTap: (){
controller.addText(value); controller.addText(value ?? title);
}, },
), ),
); );
......
...@@ -39,7 +39,7 @@ class MyApp extends StatelessWidget { ...@@ -39,7 +39,7 @@ class MyApp extends StatelessWidget {
} }
class MyHomePage extends StatefulWidget { class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key); MyHomePage({Key? key, this.title = ''}) : super(key: key);
// This widget is the home page of your application. It is stateful, meaning // This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect // that it has a State object (defined below) that contains fields that affect
......
...@@ -59,13 +59,13 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo> { ...@@ -59,13 +59,13 @@ class CustomKeyboardDemoState extends State<CustomKeyboardDemo> {
})); }));
} }
static Future<String> showInputDialogs( static Future<String?> showInputDialogs(
{@required BuildContext context, {required BuildContext context,
Widget titleWidget, Widget? titleWidget,
Widget messageWidget, Widget? messageWidget,
List<TextInputFormatter> inputFormatters, List<TextInputFormatter>? inputFormatters,
TextInputType keyboardType = TextInputType.number}) { TextInputType keyboardType = TextInputType.number}) {
String value; String? value;
return showCupertinoDialog<String>( return showCupertinoDialog<String>(
context: context, context: context,
builder: (context) { builder: (context) {
......
...@@ -10,7 +10,7 @@ description: Cool UI Example ...@@ -10,7 +10,7 @@ description: Cool UI Example
version: 1.0.0+1 version: 1.0.0+1
environment: environment:
sdk: ">=2.0.0-dev.68.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"
dependencies: dependencies:
flutter: flutter:
......
...@@ -4,11 +4,11 @@ typedef HideCallback = Future Function(); ...@@ -4,11 +4,11 @@ typedef HideCallback = Future Function();
class WeuiToastWidget extends StatelessWidget { class WeuiToastWidget extends StatelessWidget {
const WeuiToastWidget({ const WeuiToastWidget({
Key key, Key? key,
@required this.stopEvent, required this.stopEvent,
@required this.alignment, required this.alignment,
@required this.icon, required this.icon,
@required this.message, required this.message,
}) : super(key: key); }) : super(key: key);
final bool stopEvent; final bool stopEvent;
...@@ -68,16 +68,16 @@ class WeuiLoadingIcon extends StatefulWidget { ...@@ -68,16 +68,16 @@ class WeuiLoadingIcon extends StatefulWidget {
class WeuiLoadingIconState extends State<WeuiLoadingIcon> class WeuiLoadingIconState extends State<WeuiLoadingIcon>
with SingleTickerProviderStateMixin { with SingleTickerProviderStateMixin {
AnimationController _controller; AnimationController? _controller ;
Animation<double> _doubleAnimation; Animation<double>? _doubleAnimation;
@override @override
void initState() { void initState() {
super.initState(); super.initState();
_controller = new AnimationController( _controller = AnimationController(
vsync: this, duration: Duration(milliseconds: 1000)) vsync: this, duration: Duration(milliseconds: 1000))
..repeat(); ..repeat();
_doubleAnimation = Tween(begin: 0.0, end: 360.0).animate(_controller) _doubleAnimation = Tween(begin: 0.0, end: 360.0).animate(_controller!)
..addListener(() { ..addListener(() {
setState(() {}); setState(() {});
}); });
...@@ -86,14 +86,14 @@ class WeuiLoadingIconState extends State<WeuiLoadingIcon> ...@@ -86,14 +86,14 @@ class WeuiLoadingIconState extends State<WeuiLoadingIcon>
@override @override
void dispose() { void dispose() {
// TODO: implement dispose // TODO: implement dispose
_controller.dispose(); _controller!.dispose();
super.dispose(); super.dispose();
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Transform.rotate( return Transform.rotate(
angle: _doubleAnimation.value ~/ 30 * 30.0 * 0.0174533, angle: _doubleAnimation!.value ~/ 30 * 30.0 * 0.0174533,
child: Image.asset("assets/images/loading.png", child: Image.asset("assets/images/loading.png",
package: "cool_ui", width: widget.size, height: widget.size)); package: "cool_ui", width: widget.size, height: widget.size));
} }
...@@ -115,7 +115,7 @@ class WeuiToastConfigData{ ...@@ -115,7 +115,7 @@ class WeuiToastConfigData{
this.loadingBackButtonClose = false, this.loadingBackButtonClose = false,
this.toastAlignment = const Alignment(0.0, -0.2)}); this.toastAlignment = const Alignment(0.0, -0.2)});
copyWith({String successText,Duration successDuration,String loadingText,Alignment toastAlignment}){ copyWith({String? successText, Duration? successDuration, String? loadingText, Alignment? toastAlignment}){
return WeuiToastConfigData( return WeuiToastConfigData(
successText: successText ?? this.successText, successText: successText ?? this.successText,
successDuration: successDuration ?? this.successDuration, successDuration: successDuration ?? this.successDuration,
...@@ -126,8 +126,8 @@ class WeuiToastConfigData{ ...@@ -126,8 +126,8 @@ class WeuiToastConfigData{
} }
class WeuiToastConfig extends InheritedWidget{ class WeuiToastConfig extends InheritedWidget{
final WeuiToastConfigData data; final WeuiToastConfigData? data;
WeuiToastConfig({Widget child,this.data}): super(child:child); WeuiToastConfig({required Widget child,this.data}): super(child:child);
@override @override
bool updateShouldNotify(WeuiToastConfig oldWidget) { bool updateShouldNotify(WeuiToastConfig oldWidget) {
...@@ -137,21 +137,21 @@ class WeuiToastConfig extends InheritedWidget{ ...@@ -137,21 +137,21 @@ class WeuiToastConfig extends InheritedWidget{
static WeuiToastConfigData of(BuildContext context) { static WeuiToastConfigData of(BuildContext context) {
var widget = context.inheritFromWidgetOfExactType(WeuiToastConfig); var widget = context.dependOnInheritedWidgetOfExactType<WeuiToastConfig>();
if(widget is WeuiToastConfig){ if(widget is WeuiToastConfig){
return widget.data; return widget.data ?? WeuiToastConfigData();
} }
return WeuiToastConfigData(); return WeuiToastConfigData();
} }
} }
Future showWeuiSuccessToast( Future showWeuiSuccessToast(
{@required BuildContext context, {required BuildContext context,
Widget message, Widget? message,
stopEvent = false, stopEvent = false,
bool backButtonClose, bool? backButtonClose,
Alignment alignment, Alignment? alignment,
Duration closeDuration}) { Duration? closeDuration}) {
var config = WeuiToastConfig.of(context); var config = WeuiToastConfig.of(context);
message = message?? Text(config.successText); message = message?? Text(config.successText);
...@@ -171,11 +171,11 @@ Future showWeuiSuccessToast( ...@@ -171,11 +171,11 @@ Future showWeuiSuccessToast(
} }
HideCallback showWeuiLoadingToast( HideCallback showWeuiLoadingToast(
{@required BuildContext context, {required BuildContext context,
Widget message, Widget? message,
stopEvent = true, stopEvent = true,
bool backButtonClose, bool? backButtonClose,
Alignment alignment}) { Alignment? alignment}) {
var config = WeuiToastConfig.of(context); var config = WeuiToastConfig.of(context);
message = message?? Text(config.loadingText); message = message?? Text(config.loadingText);
backButtonClose = backButtonClose ?? config.loadingBackButtonClose; backButtonClose = backButtonClose ?? config.loadingBackButtonClose;
...@@ -192,20 +192,19 @@ HideCallback showWeuiLoadingToast( ...@@ -192,20 +192,19 @@ HideCallback showWeuiLoadingToast(
int backButtonIndex = 2; int backButtonIndex = 2;
HideCallback showWeuiToast( HideCallback showWeuiToast(
{@required BuildContext context, {required BuildContext context,
@required Widget message, required Widget message,
@required Widget icon, required Widget icon,
bool stopEvent = false, bool stopEvent = false,
Alignment alignment, Alignment? alignment,
bool backButtonClose}) { bool backButtonClose = false}) {
var config = WeuiToastConfig.of(context); var config = WeuiToastConfig.of(context);
alignment = alignment?? config.toastAlignment; alignment = alignment ?? config.toastAlignment;
Completer<VoidCallback> result = Completer<VoidCallback>(); Completer<VoidCallback> result = Completer<VoidCallback>();
var backButtonName = 'CoolUI_WeuiToast$backButtonIndex'; var backButtonName = 'CoolUI_WeuiToast$backButtonIndex';
BackButtonInterceptor.add((stopDefaultButtonEvent){ BackButtonInterceptor.add((stopDefaultButtonEvent, routeInfo){
print(backButtonClose);
if(backButtonClose){ if(backButtonClose){
result.future.then((hide){ result.future.then((hide){
hide(); hide();
...@@ -215,7 +214,7 @@ HideCallback showWeuiToast( ...@@ -215,7 +214,7 @@ HideCallback showWeuiToast(
}, zIndex: backButtonIndex, name: backButtonName); }, zIndex: backButtonIndex, name: backButtonName);
backButtonIndex++; backButtonIndex++;
var overlay = OverlayEntry( OverlayEntry? overlay = OverlayEntry(
maintainState: true, maintainState: true,
builder: (_) => WillPopScope( builder: (_) => WillPopScope(
onWillPop: () async { onWillPop: () async {
...@@ -224,7 +223,7 @@ HideCallback showWeuiToast( ...@@ -224,7 +223,7 @@ HideCallback showWeuiToast(
return false; return false;
}, },
child: WeuiToastWidget( child: WeuiToastWidget(
alignment: alignment, alignment: alignment!,
icon: icon, icon: icon,
message: message, message: message,
stopEvent: stopEvent, stopEvent: stopEvent,
...@@ -234,11 +233,11 @@ HideCallback showWeuiToast( ...@@ -234,11 +233,11 @@ HideCallback showWeuiToast(
if(overlay == null){ if(overlay == null){
return; return;
} }
overlay.remove(); overlay!.remove();
overlay = null; overlay = null;
BackButtonInterceptor.removeByName(backButtonName); BackButtonInterceptor.removeByName(backButtonName);
}); });
Overlay.of(context).insert(overlay); Overlay.of(context)!.insert(overlay!);
return () async { return () async {
......
...@@ -3,7 +3,7 @@ part of cool_ui; ...@@ -3,7 +3,7 @@ part of cool_ui;
class KeyboardController extends ValueNotifier<TextEditingValue>{ class KeyboardController extends ValueNotifier<TextEditingValue>{
final InputClient client; final InputClient client;
KeyboardController({TextEditingValue value,this.client}) KeyboardController({TextEditingValue? value,required this.client})
: super(value == null ? TextEditingValue.empty : value); : super(value == null ? TextEditingValue.empty : value);
......
...@@ -3,8 +3,7 @@ part of cool_ui; ...@@ -3,8 +3,7 @@ part of cool_ui;
class KeyboardMediaQuery extends StatefulWidget{ class KeyboardMediaQuery extends StatefulWidget{
final Widget child; final Widget child;
KeyboardMediaQuery({this.child}) KeyboardMediaQuery({required this.child});
: assert(child != null);
@override @override
State<StatefulWidget> createState() =>KeyboardMediaQueryState(); State<StatefulWidget> createState() =>KeyboardMediaQueryState();
...@@ -12,23 +11,22 @@ class KeyboardMediaQuery extends StatefulWidget{ ...@@ -12,23 +11,22 @@ class KeyboardMediaQuery extends StatefulWidget{
} }
class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
double keyboardHeight; double keyboardHeight = 0;
ValueNotifier<double> keyboardHeightNotifier; ValueNotifier<double> keyboardHeightNotifier = CoolKeyboard._keyboardHeightNotifier;
@override @override
void initState(){ void initState(){
super.initState(); super.initState();
CoolKeyboard._keyboardHeightNotifier.addListener(onUpdateHeight); CoolKeyboard._keyboardHeightNotifier.addListener(onUpdateHeight);
keyboardHeightNotifier = CoolKeyboard._keyboardHeightNotifier;
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
// TODO: implement build // TODO: implement build
var data = MediaQuery.of(context, nullOk: true); var data = MediaQuery.maybeOf(context);
if(data == null){ if(data == null){
data = MediaQueryData.fromWindow(WidgetsBinding.instance.window); data = MediaQueryData.fromWindow(WidgetsBinding.instance!.window);
} }
var bottom = CoolKeyboard._keyboardHeightNotifier.value ?? data.viewInsets.bottom; var bottom = CoolKeyboard._keyboardHeightNotifier.value ?? data.viewInsets.bottom;
// TODO: implement build // TODO: implement build
...@@ -43,7 +41,7 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{ ...@@ -43,7 +41,7 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
} }
onUpdateHeight(){ onUpdateHeight(){
WidgetsBinding.instance.addPostFrameCallback((_){ WidgetsBinding.instance!.addPostFrameCallback((_){
setState(()=>{}); setState(()=>{});
}); });
} }
......
...@@ -7,7 +7,7 @@ class KeyboardRootWidget extends StatefulWidget { ...@@ -7,7 +7,7 @@ class KeyboardRootWidget extends StatefulWidget {
final TextDirection textDirection; final TextDirection textDirection;
const KeyboardRootWidget( const KeyboardRootWidget(
{Key key, this.child, this.textDirection = TextDirection.ltr}) {Key? key, required this.child, this.textDirection = TextDirection.ltr})
: super(key: key); : super(key: key);
@override @override
...@@ -18,7 +18,7 @@ class KeyboardRootWidget extends StatefulWidget { ...@@ -18,7 +18,7 @@ class KeyboardRootWidget extends StatefulWidget {
} }
class KeyboardRootState extends State<KeyboardRootWidget> { class KeyboardRootState extends State<KeyboardRootWidget> {
WidgetBuilder _keyboardbuilder; WidgetBuilder? _keyboardbuilder;
bool get hasKeyboard => _keyboardbuilder != null; bool get hasKeyboard => _keyboardbuilder != null;
// List<OverlayEntry> _initialEntries = []; // List<OverlayEntry> _initialEntries = [];
...@@ -38,7 +38,7 @@ class KeyboardRootState extends State<KeyboardRootWidget> { ...@@ -38,7 +38,7 @@ class KeyboardRootState extends State<KeyboardRootWidget> {
List<Widget> children = [widget.child]; List<Widget> children = [widget.child];
if (_keyboardbuilder != null) { if (_keyboardbuilder != null) {
children.add(Builder( children.add(Builder(
builder: _keyboardbuilder, builder: _keyboardbuilder!,
)); ));
} }
return Directionality( return Directionality(
......
...@@ -7,7 +7,7 @@ class NumberKeyboard extends StatelessWidget{ ...@@ -7,7 +7,7 @@ class NumberKeyboard extends StatelessWidget{
return mediaQuery.size.width / 3 / 2 * 4; return mediaQuery.size.width / 3 / 2 * 4;
} }
final KeyboardController controller ; final KeyboardController controller ;
const NumberKeyboard({this.controller}); const NumberKeyboard({required this.controller});
static register(){ static register(){
CoolKeyboard.addKeyboard(NumberKeyboard.inputType,KeyboardConfig(builder: (context,controller, params){ CoolKeyboard.addKeyboard(NumberKeyboard.inputType,KeyboardConfig(builder: (context,controller, params){
...@@ -68,17 +68,14 @@ class NumberKeyboard extends StatelessWidget{ ...@@ -68,17 +68,14 @@ class NumberKeyboard extends StatelessWidget{
); );
} }
Widget buildButton(String title,{String value}){ Widget buildButton(String title,{String? value}){
if(value == null){
value = title;
}
return Container( return Container(
color: Colors.white, color: Colors.white,
child: GestureDetector( child: GestureDetector(
behavior: HitTestBehavior.translucent, behavior: HitTestBehavior.translucent,
child: Center(child: Text(title),), child: Center(child: Text(title),),
onTap: (){ onTap: (){
controller.addText(value); controller.addText(value ?? title);
}, },
), ),
); );
......
...@@ -34,7 +34,7 @@ class _ScreenUtil { ...@@ -34,7 +34,7 @@ class _ScreenUtil {
double _bottomBarHeight = 0.0; double _bottomBarHeight = 0.0;
double _appBarHeight = 0.0; double _appBarHeight = 0.0;
double _textScaleFactor = 0.0; double _textScaleFactor = 0.0;
MediaQueryData _mediaQueryData; MediaQueryData? _mediaQueryData;
static final _ScreenUtil _singleton = _ScreenUtil(); static final _ScreenUtil _singleton = _ScreenUtil();
...@@ -82,7 +82,7 @@ class _ScreenUtil { ...@@ -82,7 +82,7 @@ class _ScreenUtil {
double get bottomBarHeight => _bottomBarHeight; double get bottomBarHeight => _bottomBarHeight;
/// media Query Data /// media Query Data
MediaQueryData get mediaQueryData => _mediaQueryData; MediaQueryData? get mediaQueryData => _mediaQueryData;
/// screen width /// screen width
/// 当前屏幕 宽 /// 当前屏幕 宽
......
...@@ -11,8 +11,8 @@ part of cool_ui; ...@@ -11,8 +11,8 @@ part of cool_ui;
/// Widget Util. /// Widget Util.
class _WidgetUtil { class _WidgetUtil {
bool _hasMeasured = false; bool _hasMeasured = false;
double _width; double? _width;
double _height; double? _height;
/// Widget rendering listener. /// Widget rendering listener.
/// Widget渲染监听. /// Widget渲染监听.
...@@ -22,8 +22,8 @@ class _WidgetUtil { ...@@ -22,8 +22,8 @@ class _WidgetUtil {
void asyncPrepare( void asyncPrepare(
BuildContext context, bool isOnce, ValueChanged<Rect> onCallBack) { BuildContext context, bool isOnce, ValueChanged<Rect> onCallBack) {
if (_hasMeasured) return; if (_hasMeasured) return;
WidgetsBinding.instance.addPostFrameCallback((Duration timeStamp) { WidgetsBinding.instance!.addPostFrameCallback((Duration timeStamp) {
RenderBox box = context.findRenderObject(); RenderBox? box = context.findRenderObject() as RenderBox?;
if (box != null && box.semanticBounds != null) { if (box != null && box.semanticBounds != null) {
if (isOnce) _hasMeasured = true; if (isOnce) _hasMeasured = true;
double width = box.semanticBounds.width; double width = box.semanticBounds.width;
...@@ -38,9 +38,9 @@ class _WidgetUtil { ...@@ -38,9 +38,9 @@ class _WidgetUtil {
} }
/// Widget渲染监听. /// Widget渲染监听.
void asyncPrepares(bool isOnce, ValueChanged<Rect> onCallBack) { void asyncPrepares(bool isOnce, ValueChanged<Rect?>? onCallBack) {
if (_hasMeasured) return; if (_hasMeasured) return;
WidgetsBinding.instance.addPostFrameCallback((Duration timeStamp) { WidgetsBinding.instance!.addPostFrameCallback((Duration timeStamp) {
if (isOnce) _hasMeasured = true; if (isOnce) _hasMeasured = true;
if (onCallBack != null) onCallBack(null); if (onCallBack != null) onCallBack(null);
}); });
...@@ -49,8 +49,8 @@ class _WidgetUtil { ...@@ -49,8 +49,8 @@ class _WidgetUtil {
///get Widget Bounds (width, height, left, top, right, bottom and so on).Widgets must be rendered completely. ///get Widget Bounds (width, height, left, top, right, bottom and so on).Widgets must be rendered completely.
///获取widget Rect ///获取widget Rect
static Rect getWidgetBounds(BuildContext context) { static Rect getWidgetBounds(BuildContext context) {
RenderBox box = context.findRenderObject(); RenderBox? box = context.findRenderObject() as RenderBox?;
return (box != null && box.semanticBounds != null) return (box != null)
? box.semanticBounds ? box.semanticBounds
: Rect.zero; : Rect.zero;
} }
...@@ -58,7 +58,7 @@ class _WidgetUtil { ...@@ -58,7 +58,7 @@ class _WidgetUtil {
///Get the coordinates of the widget on the screen.Widgets must be rendered completely. ///Get the coordinates of the widget on the screen.Widgets must be rendered completely.
///获取widget在屏幕上的坐标,widget必须渲染完成 ///获取widget在屏幕上的坐标,widget必须渲染完成
static Offset getWidgetLocalToGlobal(BuildContext context) { static Offset getWidgetLocalToGlobal(BuildContext context) {
RenderBox box = context.findRenderObject(); RenderBox? box = context.findRenderObject() as RenderBox?;
return box == null ? Offset.zero : box.localToGlobal(Offset.zero); return box == null ? Offset.zero : box.localToGlobal(Offset.zero);
} }
} }
\ No newline at end of file
...@@ -2,7 +2,7 @@ part of cool_ui; ...@@ -2,7 +2,7 @@ part of cool_ui;
class CupertinoPopoverMenuList extends StatelessWidget { class CupertinoPopoverMenuList extends StatelessWidget {
final List<Widget> children; final List<Widget> children;
const CupertinoPopoverMenuList({this.children}); const CupertinoPopoverMenuList({this.children = const []});
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
...@@ -25,16 +25,16 @@ class CupertinoPopoverMenuList extends StatelessWidget { ...@@ -25,16 +25,16 @@ class CupertinoPopoverMenuList extends StatelessWidget {
} }
class CupertinoPopoverMenuItem extends StatefulWidget { class CupertinoPopoverMenuItem extends StatefulWidget {
final Widget leading; final Widget? leading;
final Widget child; final Widget child;
final BoolCallback onTap; final BoolCallback? onTap;
final bool isTapClosePopover; final bool isTapClosePopover;
final Color activeBackground; final Color activeBackground;
final Color background; final Color background;
const CupertinoPopoverMenuItem( const CupertinoPopoverMenuItem(
{this.leading, {this.leading,
this.child, required this.child,
this.onTap, this.onTap,
this.background = Colors.white, this.background = Colors.white,
this.activeBackground = const Color(0xFFd9d9d9), this.activeBackground = const Color(0xFFd9d9d9),
...@@ -57,7 +57,7 @@ class CupertinoPopoverMenuItemState extends State<CupertinoPopoverMenuItem> { ...@@ -57,7 +57,7 @@ class CupertinoPopoverMenuItemState extends State<CupertinoPopoverMenuItem> {
height: 35.0, height: 35.0,
child: IconTheme( child: IconTheme(
data: IconThemeData(color: Color(0xff007aff), size: 20.0), data: IconThemeData(color: Color(0xff007aff), size: 20.0),
child: widget.leading), child: widget.leading!),
)); ));
} }
widgets.add(Expanded( widgets.add(Expanded(
...@@ -75,7 +75,7 @@ class CupertinoPopoverMenuItemState extends State<CupertinoPopoverMenuItem> { ...@@ -75,7 +75,7 @@ class CupertinoPopoverMenuItemState extends State<CupertinoPopoverMenuItem> {
setState(() { setState(() {
isDown = false; isDown = false;
}); });
if (widget.onTap != null && widget.onTap()) { if (widget.onTap != null && widget.onTap!()) {
return; return;
} }
if (widget.isTapClosePopover) { if (widget.isTapClosePopover) {
......
...@@ -54,9 +54,9 @@ class CoolTableState extends State<CoolTable>{ ...@@ -54,9 +54,9 @@ class CoolTableState extends State<CoolTable>{
} }
class CoolColumnInfo{ class CoolColumnInfo{
final double flex; final double? flex;
final double width; final double? width;
final Widget title; final Widget? title;
const CoolColumnInfo({this.flex, this.width, this.title}); const CoolColumnInfo({this.flex, this.width, this.title});
} }
\ No newline at end of file
...@@ -5,15 +5,15 @@ typedef PaintCallback = void Function(PaintingContext context, Offset offset,Siz ...@@ -5,15 +5,15 @@ typedef PaintCallback = void Function(PaintingContext context, Offset offset,Siz
class PaintEvent extends SingleChildRenderObjectWidget{ class PaintEvent extends SingleChildRenderObjectWidget{
final PaintCallback paintBefore; final PaintCallback? paintBefore;
final PaintCallback paintAfter; final PaintCallback? paintAfter;
const PaintEvent({ const PaintEvent({
Key key, Key? key,
this.paintBefore, this.paintBefore,
this.paintAfter, this.paintAfter,
Widget child Widget? child
}) : }) :
super(key: key, child: child); super(key: key, child: child);
@override @override
...@@ -34,11 +34,11 @@ class PaintEvent extends SingleChildRenderObjectWidget{ ...@@ -34,11 +34,11 @@ class PaintEvent extends SingleChildRenderObjectWidget{
class PaintEventProxyBox extends RenderProxyBox{ class PaintEventProxyBox extends RenderProxyBox{
PaintCallback paintBefore; PaintCallback? paintBefore;
PaintCallback paintAfter; PaintCallback? paintAfter;
PaintEventProxyBox({ PaintEventProxyBox({
RenderBox child, RenderBox? child,
this.paintBefore, this.paintBefore,
this.paintAfter this.paintAfter
}):super(child); }):super(child);
...@@ -51,11 +51,8 @@ class PaintEventProxyBox extends RenderProxyBox{ ...@@ -51,11 +51,8 @@ class PaintEventProxyBox extends RenderProxyBox{
@override @override
void paint(PaintingContext context, Offset offset) { void paint(PaintingContext context, Offset offset) {
assert(size.width != null);
assert(size.height != null);
if(this.paintBefore != null){ if(this.paintBefore != null){
this.paintBefore(context,offset,size); this.paintBefore!(context,offset,size);
} }
super.paint(context, offset); super.paint(context, offset);
...@@ -63,7 +60,7 @@ class PaintEventProxyBox extends RenderProxyBox{ ...@@ -63,7 +60,7 @@ class PaintEventProxyBox extends RenderProxyBox{
if(this.paintAfter != null){ if(this.paintAfter != null){
this.paintAfter(context,offset,size); this.paintAfter!(context,offset,size);
} }
} }
......
set PUB_HOSTED_URL= set PUB_HOSTED_URL=
set FLUTTER_STORAGE_BASE_URL= set FLUTTER_STORAGE_BASE_URL=
set http_proxy=http://127.0.0.1:1080 set http_proxy=http://127.0.0.1:7890 & set https_proxy=http://127.0.0.1:7890
set https_proxy=https://127.0.0.1:1080
flutter packages pub publish flutter packages pub publish
\ No newline at end of file
# Generated by pub # Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile # See https://dart.dev/tools/pub/glossary#lockfile
packages: packages:
archive:
dependency: transitive
description:
name: archive
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.0.13"
args:
dependency: transitive
description:
name: args
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.6.0"
async: async:
dependency: transitive dependency: transitive
description: description:
name: async name: async
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.4.1" version: "2.5.0"
back_button_interceptor: back_button_interceptor:
dependency: "direct main" dependency: "direct main"
description: description:
name: back_button_interceptor name: back_button_interceptor
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "4.2.2" version: "5.0.0"
boolean_selector: boolean_selector:
dependency: transitive dependency: transitive
description: description:
name: boolean_selector name: boolean_selector
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.0.0" version: "2.1.0"
characters:
dependency: transitive
description:
name: characters
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.1.0"
charcode: charcode:
dependency: transitive dependency: transitive
description: description:
name: charcode name: charcode
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.1.3" version: "1.2.0"
collection: clock:
dependency: transitive dependency: transitive
description: description:
name: collection name: clock
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.14.12" version: "1.1.0"
convert: collection:
dependency: transitive dependency: transitive
description: description:
name: convert name: collection
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.1.1" version: "1.15.0"
crypto: fake_async:
dependency: transitive dependency: transitive
description: description:
name: crypto name: fake_async
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.1.4" version: "1.2.0"
flutter: flutter:
dependency: "direct main" dependency: "direct main"
description: flutter description: flutter
...@@ -74,48 +67,27 @@ packages: ...@@ -74,48 +67,27 @@ packages:
description: flutter description: flutter
source: sdk source: sdk
version: "0.0.0" version: "0.0.0"
image:
dependency: transitive
description:
name: image
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.12"
matcher: matcher:
dependency: transitive dependency: transitive
description: description:
name: matcher name: matcher
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "0.12.6" version: "0.12.10"
meta: meta:
dependency: transitive dependency: transitive
description: description:
name: meta name: meta
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.1.8" version: "1.3.0"
path: path:
dependency: transitive dependency: transitive
description: description:
name: path name: path
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.6.4" version: "1.8.0"
petitparser:
dependency: transitive
description:
name: petitparser
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.4.0"
quiver:
dependency: transitive
description:
name: quiver
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.1.3"
sky_engine: sky_engine:
dependency: transitive dependency: transitive
description: flutter description: flutter
...@@ -127,63 +99,56 @@ packages: ...@@ -127,63 +99,56 @@ packages:
name: source_span name: source_span
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.7.0" version: "1.8.0"
stack_trace: stack_trace:
dependency: transitive dependency: transitive
description: description:
name: stack_trace name: stack_trace
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.9.3" version: "1.10.0"
stream_channel: stream_channel:
dependency: transitive dependency: transitive
description: description:
name: stream_channel name: stream_channel
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.0.0" version: "2.1.0"
string_scanner: string_scanner:
dependency: transitive dependency: transitive
description: description:
name: string_scanner name: string_scanner
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.0.5" version: "1.1.0"
term_glyph: term_glyph:
dependency: transitive dependency: transitive
description: description:
name: term_glyph name: term_glyph
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.1.0" version: "1.2.0"
test_api: test_api:
dependency: transitive dependency: transitive
description: description:
name: test_api name: test_api
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "0.2.15" version: "0.2.19"
typed_data: typed_data:
dependency: transitive dependency: transitive
description: description:
name: typed_data name: typed_data
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.1.6" version: "1.3.0"
vector_math: vector_math:
dependency: transitive dependency: transitive
description: description:
name: vector_math name: vector_math
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "2.0.8" version: "2.1.0"
xml:
dependency: transitive
description:
name: xml
url: "https://pub.flutter-io.cn"
source: hosted
version: "3.6.1"
sdks: sdks:
dart: ">=2.6.0 <3.0.0" dart: ">=2.12.0 <3.0.0"
flutter: ">=1.17.0 <2.0.0" flutter: ">=2.0.0"
name: cool_ui name: cool_ui
description: Some practical Widget for flutter,Popover,Weui,Custom Keyboard description: Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version: 0.6.1 version: 1.0.0
author: Kevin <liangkaikevin@gmail.com> author: Kevin <liangkaikevin@gmail.com>
homepage: https://github.com/Im-Kevin/cool_ui homepage: https://github.com/Im-Kevin/cool_ui
environment: environment:
sdk: ">=2.0.0 <3.0.0" sdk: ">=2.12.0 <3.0.0"
flutter: ">=1.17.0 <2.0.0" flutter: ">=2.0.0 <3.0.0"
dependencies: dependencies:
back_button_interceptor: ^4.0.6 back_button_interceptor: 5.0.0
flutter: flutter:
sdk: flutter sdk: flutter
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论