提交 844b3472 authored 作者: Kevin's avatar Kevin

修改了包的引用

上级 c3b4824b
...@@ -7,7 +7,7 @@ Usage ...@@ -7,7 +7,7 @@ Usage
Add this to your package's pubspec.yaml file: Add this to your package's pubspec.yaml file:
``` yaml ``` yaml
dependencies: dependencies:
cool_ui: "^0.1.10" cool_ui: "^0.1.12"
``` ```
# 控件 # 控件
......
...@@ -216,7 +216,7 @@ class WeuiLoadingIconState extends State<WeuiLoadingIcon> ...@@ -216,7 +216,7 @@ class WeuiLoadingIconState extends State<WeuiLoadingIcon>
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Transform.rotate( return Transform.rotate(
angle: (_doubleAnimation.value / 30).toInt() * 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", package: "cool_ui",
width: widget.size, width: widget.size,
......
...@@ -111,7 +111,9 @@ class CoolKeyboard { ...@@ -111,7 +111,9 @@ class CoolKeyboard {
return; return;
_pageKey = GlobalKey<KeyboardPageState>(); _pageKey = GlobalKey<KeyboardPageState>();
_keyboardHeight = _currentKeyboard.getHeight(_context); _keyboardHeight = _currentKeyboard.getHeight(_context);
_context.ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>()).setState((){}); KeyboardMediaQueryState queryState = _context.ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>()) as KeyboardMediaQueryState;
queryState.update();
var tempKey = _pageKey; var tempKey = _pageKey;
_keyboardEntry = OverlayEntry(builder: (ctx) { _keyboardEntry = OverlayEntry(builder: (ctx) {
if(_currentKeyboard != null && _keyboardHeight != null) if(_currentKeyboard != null && _keyboardHeight != null)
...@@ -153,7 +155,9 @@ class CoolKeyboard { ...@@ -153,7 +155,9 @@ class CoolKeyboard {
} }
} }
_pageKey = null; _pageKey = null;
_context.ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>()).setState((){});
KeyboardMediaQueryState queryState = _context.ancestorStateOfType(const TypeMatcher<KeyboardMediaQueryState>()) as KeyboardMediaQueryState;
queryState.update();
} }
static clearKeyboard(){ static clearKeyboard(){
......
...@@ -21,7 +21,10 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{ ...@@ -21,7 +21,10 @@ class KeyboardMediaQueryState extends State<KeyboardMediaQuery >{
return MediaQuery( return MediaQuery(
child: widget.child, child: widget.child,
data:data.copyWith(viewInsets: data.viewInsets.copyWith(bottom: CoolKeyboard.keyboardHeight)) data:data.copyWith(viewInsets: data.viewInsets.copyWith(bottom: CoolKeyboard.keyboardHeight))
);; );
} }
update(){
setState(()=>{});
}
} }
\ No newline at end of file
...@@ -3,7 +3,6 @@ part of cool_ui; ...@@ -3,7 +3,6 @@ part of cool_ui;
typedef BoolCallback = bool Function(); typedef BoolCallback = bool Function();
class CupertinoPopoverButton extends StatelessWidget{ class CupertinoPopoverButton extends StatelessWidget{
final Widget child; final Widget child;
final Widget popoverBody;
final WidgetBuilder popoverBuild; final WidgetBuilder popoverBuild;
final double popoverWidth; final double popoverWidth;
final double popoverHeight; final double popoverHeight;
...@@ -15,10 +14,6 @@ class CupertinoPopoverButton extends StatelessWidget{ ...@@ -15,10 +14,6 @@ class CupertinoPopoverButton extends StatelessWidget{
CupertinoPopoverButton({ CupertinoPopoverButton({
@required this.child, @required this.child,
@Deprecated(
'建议不要直接使用popoverBody,而是使用popoverBuild.'
)
this.popoverBody,
this.popoverBuild, this.popoverBuild,
this.popoverColor=Colors.white, this.popoverColor=Colors.white,
this.popoverWidth, this.popoverWidth,
...@@ -27,8 +22,7 @@ class CupertinoPopoverButton extends StatelessWidget{ ...@@ -27,8 +22,7 @@ class CupertinoPopoverButton extends StatelessWidget{
this.onTap, this.onTap,
this.transitionDuration=const Duration(milliseconds: 200), this.transitionDuration=const Duration(milliseconds: 200),
this.radius=8.0}): this.radius=8.0}):
assert(popoverBody != null || popoverBuild != null), assert(popoverBuild != null),
assert(!(popoverBody != null && popoverBuild != null)),
this.popoverConstraints = this.popoverConstraints =
(popoverWidth != null || popoverHeight != null) (popoverWidth != null || popoverHeight != null)
...@@ -47,7 +41,7 @@ class CupertinoPopoverButton extends StatelessWidget{ ...@@ -47,7 +41,7 @@ class CupertinoPopoverButton extends StatelessWidget{
} }
var offset = WidgetUtil.getWidgetLocalToGlobal(context); var offset = WidgetUtil.getWidgetLocalToGlobal(context);
var bounds = WidgetUtil.getWidgetBounds(context); var bounds = WidgetUtil.getWidgetBounds(context);
var body = popoverBody; var body;
showGeneralDialog( showGeneralDialog(
context: context, context: context,
pageBuilder: (BuildContext buildContext, Animation<double> animation, Animation<double> secondaryAnimation) { pageBuilder: (BuildContext buildContext, Animation<double> animation, Animation<double> secondaryAnimation) {
...@@ -88,6 +82,7 @@ class CupertinoPopoverButton extends StatelessWidget{ ...@@ -88,6 +82,7 @@ class CupertinoPopoverButton extends StatelessWidget{
} }
} }
// ignore: must_be_immutable
class CupertinoPopover extends StatefulWidget { class CupertinoPopover extends StatefulWidget {
final Rect attachRect; final Rect attachRect;
final Widget child; final Widget child;
...@@ -237,15 +232,15 @@ class _CupertionPopoverPositionRenderObject extends RenderShiftedBox{ ...@@ -237,15 +232,15 @@ class _CupertionPopoverPositionRenderObject extends RenderShiftedBox{
Offset calcOffset(Size size){ Offset calcOffset(Size size){
double bodyLeft = 0.0; double bodyLeft = 0.0;
var isArrowUp = ScreenUtil.singleton.screenHeight > attachRect.bottom + size.height + CupertinoPopoverState._arrowHeight; var isArrowUp = ScreenUtil.getInstance().screenHeight > attachRect.bottom + size.height + CupertinoPopoverState._arrowHeight;
if(attachRect.left > size.width / 2 && if(attachRect.left > size.width / 2 &&
ScreenUtil.singleton.screenWidth - attachRect.right > size.width / 2){ //判断是否可以在中间 ScreenUtil.getInstance().screenWidth - attachRect.right > size.width / 2){ //判断是否可以在中间
bodyLeft = attachRect.left + attachRect.width / 2 - size.width / 2; bodyLeft = attachRect.left + attachRect.width / 2 - size.width / 2;
}else if(attachRect.left < size.width / 2){ //靠左 }else if(attachRect.left < size.width / 2){ //靠左
bodyLeft = 10.0; bodyLeft = 10.0;
}else{ //靠右 }else{ //靠右
bodyLeft = ScreenUtil.singleton.screenWidth - 10.0 - size.width; bodyLeft = ScreenUtil.getInstance().screenWidth - 10.0 - size.width;
} }
if(isArrowUp){ if(isArrowUp){
...@@ -347,7 +342,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{ ...@@ -347,7 +342,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
child.layout(childConstraints, parentUsesSize: true); child.layout(childConstraints, parentUsesSize: true);
size = Size(child.size.width,child.size.height + CupertinoPopoverState._arrowHeight); size = Size(child.size.width,child.size.height + CupertinoPopoverState._arrowHeight);
final BoxParentData childParentData = child.parentData; final BoxParentData childParentData = child.parentData;
var isArrowUp = ScreenUtil.singleton.screenHeight > attachRect.bottom + size.height + CupertinoPopoverState._arrowHeight; var isArrowUp = ScreenUtil.getInstance().screenHeight > attachRect.bottom + size.height + CupertinoPopoverState._arrowHeight;
if(isArrowUp) if(isArrowUp)
{ {
childParentData.offset = Offset(0.0, CupertinoPopoverState._arrowHeight); childParentData.offset = Offset(0.0, CupertinoPopoverState._arrowHeight);
...@@ -359,7 +354,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{ ...@@ -359,7 +354,7 @@ class _CupertionPopoverContextRenderObject extends RenderShiftedBox{
// TODO: implement paint // TODO: implement paint
Matrix4 transform = Matrix4.identity(); Matrix4 transform = Matrix4.identity();
// //
var isArrowUp = ScreenUtil.singleton.screenHeight > attachRect.bottom + size.height + CupertinoPopoverState._arrowHeight; var isArrowUp = ScreenUtil.getInstance().screenHeight > attachRect.bottom + size.height + CupertinoPopoverState._arrowHeight;
var arrowLeft =attachRect.left + attachRect.width / 2 - CupertinoPopoverState._arrowWidth / 2 - offset.dx; var arrowLeft =attachRect.left + attachRect.width / 2 - CupertinoPopoverState._arrowWidth / 2 - offset.dx;
var translation = Offset(arrowLeft + CupertinoPopoverState._arrowWidth / 2,isArrowUp?0.0:size.height); var translation = Offset(arrowLeft + CupertinoPopoverState._arrowWidth / 2,isArrowUp?0.0:size.height);
......
...@@ -29,13 +29,27 @@ packages: ...@@ -29,13 +29,27 @@ packages:
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "1.14.11" version: "1.14.11"
cookie_jar:
dependency: transitive
description:
name: cookie_jar
url: "https://pub.flutter-io.cn"
source: hosted
version: "0.0.7"
dio:
dependency: transitive
description:
name: dio
url: "https://pub.flutter-io.cn"
source: hosted
version: "1.0.12"
flustars: flustars:
dependency: "direct main" dependency: "direct main"
description: description:
name: flustars name: flustars
url: "https://pub.flutter-io.cn" url: "https://pub.flutter-io.cn"
source: hosted source: hosted
version: "0.1.4" version: "0.1.7"
flutter: flutter:
dependency: "direct main" dependency: "direct main"
description: flutter description: flutter
......
name: cool_ui name: cool_ui
description: 用flutter实现一些我认为好看的UI控件,目前暂时只有Popover,Weui,Custom Keyboard,不过有什么觉得好看的可以提Issue description: Some practical Widget for flutter,Popover,Weui,Custom Keyboard
version: 0.1.10 version: 0.1.12
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
...@@ -11,7 +11,7 @@ dependencies: ...@@ -11,7 +11,7 @@ dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
flustars: ^0.1.4 flustars: ^0.1.7
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论