Skip to content
forked from Im-Kevin/cool_ui

用flutter实现一些我认为好看的UI控件,有Popover,仿Weui的Toast,自定义键盘

License

Notifications You must be signed in to change notification settings

wenwenqin/cool_ui

Repository files navigation

cool_ui

用flutter实现一些我认为好看的UI控件,有觉得好看的UI控件可以提出来,我会考虑实现,

Usage Add this to your package's pubspec.yaml file:

dependencies:
  cool_ui: "^0.0.8"

CupertinoPopover

仿iOS的UIPopover

Image text

案例核心代码

CupertinoPopoverButton(
        child: Container(
          margin: EdgeInsets.all(20.0),
          width: 80.0,
          height: 40.0,
          decoration: BoxDecoration(
              color: Colors.white,
              borderRadius: BorderRadius.all(Radius.circular(5.0)),
              boxShadow: [BoxShadow(color: Colors.black12,blurRadius: 5.0)]
          ),
          child: Center(child:Text('左上角')),
        ),
        popoverBody:Container(
          width: 100.0,
          height: 100.0,
          child: Text('左上角内容'),
        ),
        popoverWidth: 100.0,
        popoverHeight: 100.0);
  }

About

用flutter实现一些我认为好看的UI控件,有Popover,仿Weui的Toast,自定义键盘

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 97.1%
  • Other 2.9%