提交 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);
......
...@@ -2,24 +2,24 @@ part of cool_ui; ...@@ -2,24 +2,24 @@ part of cool_ui;
typedef GetKeyboardHeight = double Function(BuildContext context); typedef GetKeyboardHeight = double Function(BuildContext context);
typedef KeyboardBuilder = Widget Function( typedef KeyboardBuilder = Widget Function(
BuildContext context, KeyboardController controller, String param); BuildContext context, KeyboardController controller, String? param);
class CoolKeyboard { class CoolKeyboard {
static JSONMethodCodec _codec = const JSONMethodCodec(); static JSONMethodCodec _codec = const JSONMethodCodec();
static KeyboardConfig _currentKeyboard; static KeyboardConfig? _currentKeyboard;
static Map<CKTextInputType, KeyboardConfig> _keyboards = {}; static Map<CKTextInputType, KeyboardConfig> _keyboards = {};
static KeyboardRootState _root; static KeyboardRootState? _root;
static BuildContext _context; static BuildContext? _context;
static KeyboardController _keyboardController; static KeyboardController? _keyboardController;
static GlobalKey<KeyboardPageState> _pageKey; static GlobalKey<KeyboardPageState>? _pageKey;
static bool isInterceptor = false; static bool isInterceptor = false;
static ValueNotifier<double> _keyboardHeightNotifier = ValueNotifier(null) static ValueNotifier<double> _keyboardHeightNotifier = ValueNotifier(0)
..addListener(updateKeyboardHeight); ..addListener(updateKeyboardHeight);
static String _keyboardParam; static String? _keyboardParam;
static Timer clearTask; static Timer? clearTask;
static init(KeyboardRootState root, BuildContext context) { static init(KeyboardRootState root, BuildContext context) {
_root = root; _root = root;
...@@ -30,20 +30,22 @@ class CoolKeyboard { ...@@ -30,20 +30,22 @@ class CoolKeyboard {
static interceptorInput() { static interceptorInput() {
if (isInterceptor) return; if (isInterceptor) return;
isInterceptor = true; isInterceptor = true;
ServicesBinding.instance.defaultBinaryMessenger ServicesBinding.instance!.defaultBinaryMessenger
.setMockMessageHandler("flutter/textinput", (ByteData data) async { .setMockMessageHandler("flutter/textinput", (ByteData? data) async {
var methodCall = _codec.decodeMethodCall(data); var methodCall = _codec.decodeMethodCall(data);
switch (methodCall.method) { switch (methodCall.method) {
case 'TextInput.show': case 'TextInput.show':
if (_currentKeyboard != null) { if (_currentKeyboard != null) {
if (clearTask != null) { if (clearTask != null) {
clearTask.cancel(); clearTask!.cancel();
clearTask = null; clearTask = null;
} }
openKeyboard(); openKeyboard();
return _codec.encodeSuccessEnvelope(null); return _codec.encodeSuccessEnvelope(null);
} else { } else {
return await _sendPlatformMessage("flutter/textinput", data); if (data != null) {
return await _sendPlatformMessage("flutter/textinput", data!);
}
} }
break; break;
case 'TextInput.hide': case 'TextInput.hide':
...@@ -54,13 +56,15 @@ class CoolKeyboard { ...@@ -54,13 +56,15 @@ class CoolKeyboard {
} }
return _codec.encodeSuccessEnvelope(null); return _codec.encodeSuccessEnvelope(null);
} else { } else {
return await _sendPlatformMessage("flutter/textinput", data); if (data != null) {
return await _sendPlatformMessage("flutter/textinput", data);
}
} }
break; break;
case 'TextInput.setEditingState': case 'TextInput.setEditingState':
var editingState = TextEditingValue.fromJSON(methodCall.arguments); var editingState = TextEditingValue.fromJSON(methodCall.arguments);
if (editingState != null && _keyboardController != null) { if (_keyboardController != null) {
_keyboardController.value = editingState; _keyboardController!.value = editingState;
return _codec.encodeSuccessEnvelope(null); return _codec.encodeSuccessEnvelope(null);
} }
break; break;
...@@ -73,31 +77,31 @@ class CoolKeyboard { ...@@ -73,31 +77,31 @@ class CoolKeyboard {
break; break;
case 'TextInput.setClient': case 'TextInput.setClient':
var setInputType = methodCall.arguments[1]['inputType']; var setInputType = methodCall.arguments[1]['inputType'];
InputClient client; InputClient? client;
_keyboards.forEach((inputType, keyboardConfig) { _keyboards.forEach((inputType, keyboardConfig) {
if (inputType.name == setInputType['name']) { if (inputType.name == setInputType['name']) {
client = InputClient.fromJSON(methodCall.arguments); client = InputClient.fromJSON(methodCall.arguments);
_keyboardParam = _keyboardParam =
(client.configuration.inputType as CKTextInputType).params; (client!.configuration.inputType as CKTextInputType).params;
clearKeyboard(); clearKeyboard();
_currentKeyboard = keyboardConfig; _currentKeyboard = keyboardConfig;
_keyboardController = KeyboardController(client: client) _keyboardController = KeyboardController(client: client!)
..addListener(() { ..addListener(() {
var callbackMethodCall = MethodCall( var callbackMethodCall = MethodCall(
"TextInputClient.updateEditingState", [ "TextInputClient.updateEditingState", [
_keyboardController.client.connectionId, _keyboardController!.client.connectionId,
_keyboardController.value.toJSON() _keyboardController!.value.toJSON()
]); ]);
ServicesBinding.instance.defaultBinaryMessenger ServicesBinding.instance!.defaultBinaryMessenger
.handlePlatformMessage( .handlePlatformMessage(
"flutter/textinput", "flutter/textinput",
_codec.encodeMethodCall(callbackMethodCall), _codec.encodeMethodCall(callbackMethodCall),
(data) {}); (data) {});
}); });
if (_pageKey != null) { if (_pageKey != null) {
_pageKey.currentState?.update(); _pageKey!.currentState?.update();
} }
} }
}); });
...@@ -114,15 +118,18 @@ class CoolKeyboard { ...@@ -114,15 +118,18 @@ class CoolKeyboard {
} }
break; break;
} }
ByteData response = await _sendPlatformMessage("flutter/textinput", data); if (data != null) {
return response; ByteData response = await _sendPlatformMessage("flutter/textinput", data);
return response;
}
return null;
}); });
} }
static Future<ByteData> _sendPlatformMessage( static Future<ByteData> _sendPlatformMessage(
String channel, ByteData message) { String channel, ByteData message) {
final Completer<ByteData> completer = Completer<ByteData>(); final Completer<ByteData> completer = Completer<ByteData>();
ui.window.sendPlatformMessage(channel, message, (ByteData reply) { ui.window.sendPlatformMessage(channel, message, (ByteData? reply) {
try { try {
completer.complete(reply); completer.complete(reply);
} catch (exception, stack) { } catch (exception, stack) {
...@@ -143,9 +150,9 @@ class CoolKeyboard { ...@@ -143,9 +150,9 @@ class CoolKeyboard {
} }
static openKeyboard() { static openKeyboard() {
var keyboardHeight = _currentKeyboard.getHeight(_context); var keyboardHeight = _currentKeyboard!.getHeight(_context!);
_keyboardHeightNotifier.value = keyboardHeight; _keyboardHeightNotifier.value = keyboardHeight;
if (_root.hasKeyboard && _pageKey != null) return; if (_root!.hasKeyboard && _pageKey != null) return;
_pageKey = GlobalKey<KeyboardPageState>(); _pageKey = GlobalKey<KeyboardPageState>();
// KeyboardMediaQueryState queryState = _context // KeyboardMediaQueryState queryState = _context
// .ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>()) // .ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>())
...@@ -153,13 +160,13 @@ class CoolKeyboard { ...@@ -153,13 +160,13 @@ class CoolKeyboard {
// queryState.update(); // queryState.update();
var tempKey = _pageKey; var tempKey = _pageKey;
_root.setKeyboard((ctx) { _root!.setKeyboard((ctx) {
if (_currentKeyboard != null && _keyboardHeightNotifier.value != null) { if (_currentKeyboard != null && _keyboardHeightNotifier.value != null) {
return KeyboardPage( return KeyboardPage(
key: tempKey, key: tempKey,
builder: (ctx) { builder: (ctx) {
return _currentKeyboard?.builder( return _currentKeyboard!.builder(
ctx, _keyboardController, _keyboardParam); ctx, _keyboardController!, _keyboardParam);
}, },
height: _keyboardHeightNotifier.value); height: _keyboardHeightNotifier.value);
} else { } else {
...@@ -167,7 +174,7 @@ class CoolKeyboard { ...@@ -167,7 +174,7 @@ class CoolKeyboard {
} }
}); });
BackButtonInterceptor.add((_) { BackButtonInterceptor.add((_, _2) {
CoolKeyboard.sendPerformAction(TextInputAction.done); CoolKeyboard.sendPerformAction(TextInputAction.done);
return true; return true;
}, zIndex: 1, name: 'CustomKeyboard'); }, zIndex: 1, name: 'CustomKeyboard');
...@@ -175,13 +182,13 @@ class CoolKeyboard { ...@@ -175,13 +182,13 @@ class CoolKeyboard {
static hideKeyboard({bool animation = true}) { static hideKeyboard({bool animation = true}) {
if (clearTask != null) { if (clearTask != null) {
if (clearTask.isActive) { if (clearTask!.isActive) {
clearTask.cancel(); clearTask!.cancel();
} }
clearTask = null; clearTask = null;
} }
BackButtonInterceptor.removeByName('CustomKeyboard'); BackButtonInterceptor.removeByName('CustomKeyboard');
if (_root.hasKeyboard && _pageKey != null) { if (_root!.hasKeyboard && _pageKey != null) {
// _pageKey.currentState.animationController // _pageKey.currentState.animationController
// .addStatusListener((AnimationStatus status) { // .addStatusListener((AnimationStatus status) {
// if (status == AnimationStatus.dismissed || // if (status == AnimationStatus.dismissed ||
...@@ -193,16 +200,16 @@ class CoolKeyboard { ...@@ -193,16 +200,16 @@ class CoolKeyboard {
// } // }
// }); // });
if (animation) { if (animation) {
_pageKey.currentState.exitKeyboard(); _pageKey!.currentState!.exitKeyboard();
Future.delayed(Duration(milliseconds: 116)).then((_) { Future.delayed(Duration(milliseconds: 116)).then((_) {
_root.clearKeyboard(); _root!.clearKeyboard();
}); });
} else { } else {
_root.clearKeyboard(); _root!.clearKeyboard();
} }
} }
_pageKey = null; _pageKey = null;
_keyboardHeightNotifier.value = null; _keyboardHeightNotifier.value = 0;
try { try {
// KeyboardMediaQueryState queryState = _context // KeyboardMediaQueryState queryState = _context
// .ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>()) // .ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>())
...@@ -214,23 +221,23 @@ class CoolKeyboard { ...@@ -214,23 +221,23 @@ class CoolKeyboard {
static clearKeyboard() { static clearKeyboard() {
_currentKeyboard = null; _currentKeyboard = null;
if (_keyboardController != null) { if (_keyboardController != null) {
_keyboardController.dispose(); _keyboardController!.dispose();
_keyboardController = null; _keyboardController = null;
} }
} }
static sendPerformAction(TextInputAction action) { static sendPerformAction(TextInputAction action) {
var callbackMethodCall = MethodCall("TextInputClient.performAction", var callbackMethodCall = MethodCall("TextInputClient.performAction",
[_keyboardController.client.connectionId, action.toString()]); [_keyboardController!.client.connectionId, action.toString()]);
defaultBinaryMessenger.handlePlatformMessage("flutter/textinput", ServicesBinding.instance!.defaultBinaryMessenger.handlePlatformMessage("flutter/textinput",
_codec.encodeMethodCall(callbackMethodCall), (data) {}); _codec.encodeMethodCall(callbackMethodCall), (data) {});
} }
static updateKeyboardHeight() { static updateKeyboardHeight() {
if (_pageKey != null && if (_pageKey != null &&
_pageKey.currentState != null && _pageKey!.currentState != null &&
clearTask == null) { clearTask == null) {
_pageKey.currentState.updateHeight(_keyboardHeightNotifier.value); _pageKey!.currentState!.updateHeight(_keyboardHeightNotifier.value);
} }
} }
} }
...@@ -238,13 +245,13 @@ class CoolKeyboard { ...@@ -238,13 +245,13 @@ class CoolKeyboard {
class KeyboardConfig { class KeyboardConfig {
final KeyboardBuilder builder; final KeyboardBuilder builder;
final GetKeyboardHeight getHeight; final GetKeyboardHeight getHeight;
const KeyboardConfig({this.builder, this.getHeight}); const KeyboardConfig({required this.builder,required this.getHeight});
} }
class InputClient { class InputClient {
final int connectionId; final int connectionId;
final TextInputConfiguration configuration; final TextInputConfiguration configuration;
const InputClient({this.connectionId, this.configuration}); const InputClient({required this.connectionId,required this.configuration});
factory InputClient.fromJSON(List<dynamic> encoded) { factory InputClient.fromJSON(List<dynamic> encoded) {
return InputClient( return InputClient(
...@@ -322,9 +329,9 @@ class InputClient { ...@@ -322,9 +329,9 @@ class InputClient {
class CKTextInputType extends TextInputType { class CKTextInputType extends TextInputType {
final String name; final String name;
final String params; final String? params;
const CKTextInputType({this.name, bool signed, bool decimal, this.params}) const CKTextInputType({required this.name, bool? signed, bool? decimal, this.params})
: super.numberWithOptions(signed: signed, decimal: decimal); : super.numberWithOptions(signed: signed, decimal: decimal);
@override @override
...@@ -369,14 +376,14 @@ class CKTextInputType extends TextInputType { ...@@ -369,14 +376,14 @@ class CKTextInputType extends TextInputType {
class KeyboardPage extends StatefulWidget { class KeyboardPage extends StatefulWidget {
final WidgetBuilder builder; final WidgetBuilder builder;
final double height; final double height;
const KeyboardPage({this.builder, this.height, Key key}) : super(key: key); const KeyboardPage({required this.builder, this.height = 0, Key? key}) : super(key: key);
@override @override
State<StatefulWidget> createState() => KeyboardPageState(); State<StatefulWidget> createState() => KeyboardPageState();
} }
class KeyboardPageState extends State<KeyboardPage> { class KeyboardPageState extends State<KeyboardPage> {
Widget _lastBuildWidget; Widget? _lastBuildWidget;
bool isClose = false; bool isClose = false;
double _height = 0; double _height = 0;
...@@ -385,7 +392,7 @@ class KeyboardPageState extends State<KeyboardPage> { ...@@ -385,7 +392,7 @@ class KeyboardPageState extends State<KeyboardPage> {
// TODO: implement initState // TODO: implement initState
super.initState(); super.initState();
WidgetsBinding.instance.addPostFrameCallback((_) { WidgetsBinding.instance!.addPostFrameCallback((_) {
_height = widget.height; _height = widget.height;
setState(() => {}); setState(() => {});
}); });
...@@ -433,14 +440,14 @@ class KeyboardPageState extends State<KeyboardPage> { ...@@ -433,14 +440,14 @@ class KeyboardPageState extends State<KeyboardPage> {
} }
update() { update() {
WidgetsBinding.instance.addPostFrameCallback((_) { WidgetsBinding.instance!.addPostFrameCallback((_) {
setState(() => {}); setState(() => {});
}); });
} }
updateHeight(double height) { updateHeight(double height) {
WidgetsBinding.instance.addPostFrameCallback((_) { WidgetsBinding.instance!.addPostFrameCallback((_) {
this._height = height ?? 0; this._height = height;
setState(() => {}); setState(() => {});
}); });
} }
......
...@@ -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
...@@ -6,26 +6,26 @@ typedef BoolCallback = bool Function(); ...@@ -6,26 +6,26 @@ typedef BoolCallback = bool Function();
class CupertinoPopoverButton extends StatelessWidget { class CupertinoPopoverButton extends StatelessWidget {
final Widget child; final Widget child;
final WidgetBuilder popoverBuild; final WidgetBuilder? popoverBuild;
final double popoverWidth; final double? popoverWidth;
final double popoverHeight; final double? popoverHeight;
final Color popoverColor; final Color popoverColor;
final List<BoxShadow> popoverBoxShadow; final List<BoxShadow>? popoverBoxShadow;
final double radius; final double radius;
final Duration transitionDuration; final Duration transitionDuration;
final BoolCallback onTap; final BoolCallback? onTap;
final BoxConstraints popoverConstraints; final BoxConstraints? popoverConstraints;
final Color barrierColor; final Color barrierColor;
final CupertinoPopoverDirection direction; final CupertinoPopoverDirection direction;
CupertinoPopoverButton( CupertinoPopoverButton(
{@required this.child, {required this.child,
this.popoverBuild, this.popoverBuild,
this.popoverColor = Colors.white, this.popoverColor = Colors.white,
this.popoverBoxShadow, this.popoverBoxShadow,
this.popoverWidth, this.popoverWidth,
this.popoverHeight, this.popoverHeight,
BoxConstraints popoverConstraints, BoxConstraints? popoverConstraints,
this.direction = CupertinoPopoverDirection.bottom, this.direction = CupertinoPopoverDirection.bottom,
this.onTap, this.onTap,
this.transitionDuration = const Duration(milliseconds: 200), this.transitionDuration = const Duration(milliseconds: 200),
...@@ -46,7 +46,7 @@ class CupertinoPopoverButton extends StatelessWidget { ...@@ -46,7 +46,7 @@ class CupertinoPopoverButton extends StatelessWidget {
return GestureDetector( return GestureDetector(
behavior: HitTestBehavior.translucent, behavior: HitTestBehavior.translucent,
onTap: () { onTap: () {
if (onTap != null && onTap()) { if (onTap != null && onTap!()) {
return; return;
} }
var offset = _WidgetUtil.getWidgetLocalToGlobal(context); var offset = _WidgetUtil.getWidgetLocalToGlobal(context);
...@@ -68,7 +68,7 @@ class CupertinoPopoverButton extends StatelessWidget { ...@@ -68,7 +68,7 @@ class CupertinoPopoverButton extends StatelessWidget {
transitionBuilder: (BuildContext context, Animation<double> animation, transitionBuilder: (BuildContext context, Animation<double> animation,
Animation<double> secondaryAnimation, Widget child) { Animation<double> secondaryAnimation, Widget child) {
if (body == null) { if (body == null) {
body = popoverBuild(context); body = popoverBuild!(context);
} }
return FadeTransition( return FadeTransition(
opacity: CurvedAnimation( opacity: CurvedAnimation(
...@@ -101,21 +101,21 @@ class CupertinoPopover extends StatefulWidget { ...@@ -101,21 +101,21 @@ class CupertinoPopover extends StatefulWidget {
final Rect attachRect; final Rect attachRect;
final Widget child; final Widget child;
final Color color; final Color color;
final List<BoxShadow> boxShadow; final List<BoxShadow>? boxShadow;
final double radius; final double radius;
final CupertinoPopoverDirection direction; final CupertinoPopoverDirection direction;
final Animation<double> doubleAnimation; final Animation<double> doubleAnimation;
BoxConstraints constraints; BoxConstraints? constraints;
CupertinoPopover( CupertinoPopover(
{@required this.attachRect, {required this.attachRect,
@required this.child, required this.child,
BoxConstraints constraints, BoxConstraints? constraints,
this.color = Colors.white, this.color = Colors.white,
this.boxShadow, this.boxShadow,
@required BuildContext context, required BuildContext context,
this.direction = CupertinoPopoverDirection.bottom, this.direction = CupertinoPopoverDirection.bottom,
this.doubleAnimation, required this.doubleAnimation,
this.radius = 8.0}) this.radius = 8.0})
: super() { : super() {
BoxConstraints temp; BoxConstraints temp;
...@@ -155,11 +155,6 @@ class CupertinoPopoverState extends State<CupertinoPopover> ...@@ -155,11 +155,6 @@ class CupertinoPopoverState extends State<CupertinoPopover>
static const double _arrowWidth = 12.0; static const double _arrowWidth = 12.0;
static const double _arrowHeight = 8.0; static const double _arrowHeight = 8.0;
// AnimationController animation;
/// 是否箭头向上
bool isArrowUp;
@override @override
void initState() { void initState() {
super.initState(); super.initState();
...@@ -179,7 +174,7 @@ class CupertinoPopoverState extends State<CupertinoPopover> ...@@ -179,7 +174,7 @@ class CupertinoPopoverState extends State<CupertinoPopover>
scale: widget.doubleAnimation, scale: widget.doubleAnimation,
radius: widget.radius, radius: widget.radius,
color: widget.color, color: widget.color,
boxShadow: widget.boxShadow, boxShadow: widget.boxShadow ?? [],
direction: widget.direction, direction: widget.direction,
child: child:
Material(type: MaterialType.transparency, child: widget.child), Material(type: MaterialType.transparency, child: widget.child),
...@@ -193,15 +188,15 @@ class CupertinoPopoverState extends State<CupertinoPopover> ...@@ -193,15 +188,15 @@ class CupertinoPopoverState extends State<CupertinoPopover>
class _CupertionPopoverPosition extends SingleChildRenderObjectWidget { class _CupertionPopoverPosition extends SingleChildRenderObjectWidget {
final Rect attachRect; final Rect attachRect;
final Animation<double> scale; final Animation<double> scale;
final BoxConstraints constraints; final BoxConstraints? constraints;
final CupertinoPopoverDirection direction; final CupertinoPopoverDirection direction;
_CupertionPopoverPosition( _CupertionPopoverPosition(
{Widget child, {required Widget child,
this.attachRect, required this.attachRect,
this.constraints, this.constraints,
this.scale, required this.scale,
this.direction}) required this.direction})
: super(child: child); : super(child: child);
@override @override
...@@ -209,7 +204,7 @@ class _CupertionPopoverPosition extends SingleChildRenderObjectWidget { ...@@ -209,7 +204,7 @@ class _CupertionPopoverPosition extends SingleChildRenderObjectWidget {
_CupertionPopoverPositionRenderObject( _CupertionPopoverPositionRenderObject(
attachRect: attachRect, attachRect: attachRect,
direction: direction, direction: direction,
constraints: constraints); constraints: constraints ?? BoxConstraints());
@override @override
void updateRenderObject(BuildContext context, void updateRenderObject(BuildContext context,
...@@ -217,7 +212,7 @@ class _CupertionPopoverPosition extends SingleChildRenderObjectWidget { ...@@ -217,7 +212,7 @@ class _CupertionPopoverPosition extends SingleChildRenderObjectWidget {
renderObject renderObject
..attachRect = attachRect ..attachRect = attachRect
..direction = direction ..direction = direction
..additionalConstraints = constraints; ..additionalConstraints = constraints ?? BoxConstraints();
} }
@override @override
...@@ -255,27 +250,25 @@ class _CupertionPopoverPositionRenderObject extends RenderShiftedBox { ...@@ -255,27 +250,25 @@ class _CupertionPopoverPositionRenderObject extends RenderShiftedBox {
} }
_CupertionPopoverPositionRenderObject( _CupertionPopoverPositionRenderObject(
{RenderBox child, {RenderBox? child,
Rect attachRect, required Rect attachRect,
Color color, BoxConstraints constraints = const BoxConstraints(),
BoxConstraints constraints, required CupertinoPopoverDirection direction})
Animation<double> scale, :
CupertinoPopoverDirection direction}) this._attachRect = attachRect,
: super(child) { this._additionalConstraints = constraints,
this._attachRect = attachRect; this._direction = direction,
this._additionalConstraints = constraints; super(child);
this._direction = direction;
}
@override @override
void performLayout() { void performLayout() {
child.layout(_additionalConstraints.enforce(constraints), child!.layout(_additionalConstraints.enforce(constraints),
parentUsesSize: true); parentUsesSize: true);
size = Size(constraints.maxWidth, constraints.maxHeight); size = Size(constraints.maxWidth, constraints.maxHeight);
final BoxParentData childParentData = child.parentData; final BoxParentData childParentData = child!.parentData as BoxParentData;
childParentData.offset = calcOffset(child.size); childParentData.offset = calcOffset(child!.size);
} }
Offset calcOffset(Size size) { Offset calcOffset(Size size) {
...@@ -346,13 +339,13 @@ class _CupertionPopoverContext extends SingleChildRenderObjectWidget { ...@@ -346,13 +339,13 @@ class _CupertionPopoverContext extends SingleChildRenderObjectWidget {
final double radius; final double radius;
final CupertinoPopoverDirection direction; final CupertinoPopoverDirection direction;
_CupertionPopoverContext( _CupertionPopoverContext(
{Widget child, {required Widget child,
this.attachRect, required this.attachRect,
this.color, required this.color,
this.boxShadow, this.boxShadow = const [],
this.scale, required this.scale,
this.radius, required this.radius,
this.direction}) required this.direction})
: super(child: child); : super(child: child);
@override @override
...@@ -430,21 +423,20 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox { ...@@ -430,21 +423,20 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox {
} }
_CupertionPopoverContextRenderObject( _CupertionPopoverContextRenderObject(
{RenderBox child, {RenderBox? child,
Rect attachRect, required Rect attachRect,
Color color, required Color color,
List<BoxShadow> boxShadow, List<BoxShadow> boxShadow = const [],
double scale, required double scale,
double radius, required double radius,
CupertinoPopoverDirection direction}) required CupertinoPopoverDirection direction})
: super(child) { :
this._attachRect = attachRect; this._attachRect = attachRect,
this._color = color; this._color = color,
this._boxShadow = boxShadow; this._boxShadow = boxShadow,
this._scale = scale; this._scale = scale,
this._radius = radius; this._radius = radius,
this._direction = direction; this._direction = direction,super(child);
}
@override @override
void performLayout() { void performLayout() {
...@@ -464,20 +456,20 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox { ...@@ -464,20 +456,20 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox {
.enforce(constraints); .enforce(constraints);
} }
child.layout(childConstraints, parentUsesSize: true); child!.layout(childConstraints, parentUsesSize: true);
if (direction == CupertinoPopoverDirection.top || if (direction == CupertinoPopoverDirection.top ||
direction == CupertinoPopoverDirection.bottom) { direction == CupertinoPopoverDirection.bottom) {
size = Size(child.size.width, size = Size(child!.size.width,
child.size.height + CupertinoPopoverState._arrowHeight); child!.size.height + CupertinoPopoverState._arrowHeight);
} else { } else {
size = Size(child.size.width + CupertinoPopoverState._arrowHeight, size = Size(child!.size.width + CupertinoPopoverState._arrowHeight,
child.size.height); child!.size.height);
} }
CupertinoPopoverDirection calcDirection = CupertinoPopoverDirection calcDirection =
_calcDirection(attachRect, size, direction); _calcDirection(attachRect, size, direction);
final BoxParentData childParentData = child.parentData; final BoxParentData childParentData = child!.parentData as BoxParentData;
if (calcDirection == CupertinoPopoverDirection.bottom) { if (calcDirection == CupertinoPopoverDirection.bottom) {
childParentData.offset = Offset(0.0, CupertinoPopoverState._arrowHeight); childParentData.offset = Offset(0.0, CupertinoPopoverState._arrowHeight);
} else if (calcDirection == CupertinoPopoverDirection.right) { } else if (calcDirection == CupertinoPopoverDirection.right) {
...@@ -493,13 +485,13 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox { ...@@ -493,13 +485,13 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox {
CupertinoPopoverDirection calcDirection = CupertinoPopoverDirection calcDirection =
_calcDirection(attachRect, size, direction); _calcDirection(attachRect, size, direction);
// var isArrowUp = calcDirection == CupertinoPopoverDirection.bottom;
Rect arrowRect; Rect? arrowRect;
Offset translation; Offset? translation;
Rect bodyRect; Rect bodyRect;
final BoxParentData childParentData = child.parentData; final BoxParentData childParentData = (child!.parentData) as BoxParentData;
bodyRect = childParentData.offset & child.size; bodyRect = childParentData.offset & child!.size;
var arrowLeft = attachRect.left + // 用于 Top和Bottom var arrowLeft = attachRect.left + // 用于 Top和Bottom
attachRect.width / 2 - attachRect.width / 2 -
...@@ -515,7 +507,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox { ...@@ -515,7 +507,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox {
case CupertinoPopoverDirection.top: case CupertinoPopoverDirection.top:
arrowRect = Rect.fromLTWH( arrowRect = Rect.fromLTWH(
arrowLeft, arrowLeft,
child.size.height, child!.size.height,
CupertinoPopoverState._arrowWidth, CupertinoPopoverState._arrowWidth,
CupertinoPopoverState._arrowHeight); CupertinoPopoverState._arrowHeight);
translation = Offset( translation = Offset(
...@@ -524,7 +516,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox { ...@@ -524,7 +516,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox {
break; break;
case CupertinoPopoverDirection.left: case CupertinoPopoverDirection.left:
arrowRect = Rect.fromLTWH( arrowRect = Rect.fromLTWH(
child.size.width, child!.size.width,
arrowTop, arrowTop,
CupertinoPopoverState._arrowHeight, CupertinoPopoverState._arrowHeight,
CupertinoPopoverState._arrowWidth); CupertinoPopoverState._arrowWidth);
...@@ -552,12 +544,12 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox { ...@@ -552,12 +544,12 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox {
default: default:
} }
transform.translate(translation.dx, translation.dy); transform.translate(translation!.dx, translation.dy);
transform.scale(scale, scale, 1.0); transform.scale(scale, scale, 1.0);
transform.translate(-translation.dx, -translation.dy); transform.translate(-translation.dx, -translation.dy);
_paintShadows( _paintShadows(
context, transform, offset, calcDirection, arrowRect, bodyRect); context, transform, offset, calcDirection, arrowRect!, bodyRect);
Path clipPath = _getClip(calcDirection, arrowRect, bodyRect); Path clipPath = _getClip(calcDirection, arrowRect, bodyRect);
context.pushClipPath(needsCompositing, offset, offset & size, clipPath, context.pushClipPath(needsCompositing, offset, offset & size, clipPath,
...@@ -574,7 +566,6 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox { ...@@ -574,7 +566,6 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox {
void _paintShadows(PaintingContext context, Matrix4 transform, Offset offset, void _paintShadows(PaintingContext context, Matrix4 transform, Offset offset,
CupertinoPopoverDirection direction, Rect arrowRect, Rect bodyRect) { CupertinoPopoverDirection direction, Rect arrowRect, Rect bodyRect) {
if (boxShadow == null) return;
for (final BoxShadow boxShadow in boxShadow) { for (final BoxShadow boxShadow in boxShadow) {
final Paint paint = boxShadow.toPaint(); final Paint paint = boxShadow.toPaint();
arrowRect = arrowRect arrowRect = arrowRect
......
...@@ -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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论