https://github.com/pd4d10/ant-design-mobile-flutter
Flutter implementation of Ant Design Mobile
https://github.com/pd4d10/ant-design-mobile-flutter
ant-design antd-mobile flutter
Last synced: 6 months ago
JSON representation
Flutter implementation of Ant Design Mobile
- Host: GitHub
- URL: https://github.com/pd4d10/ant-design-mobile-flutter
- Owner: pd4d10
- License: mit
- Created: 2022-09-04T08:08:27.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-23T07:17:49.000Z (almost 3 years ago)
- Last Synced: 2025-03-20T00:22:12.894Z (7 months ago)
- Topics: ant-design, antd-mobile, flutter
- Language: Dart
- Homepage: ant-design-mobile-flutter.vercel.app
- Size: 464 KB
- Stars: 15
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Ant Design Mobile for Flutter
[](https://pub.dev/packages/antd_mobile)
Flutter implementation of [Ant Design Mobile](https://mobile.ant.design/)
## Installation
Add `antd_mobile` as a dependency to your `pubspec.yaml`.
## Usage
```dart
import 'package:antd_mobile/antd_mobile.dart';class MyWidget extends StatelessWidget {
const MyWidget({super.key});@override
Widget build(BuildContext context) {
// Widgets are prefixed with `Ant`, for example:
return AntButton(
child: const Text('Button'),
onClick: () {
// do something
},
);
}
}
```## Contribution
[Ant Design Mobile](https://mobile.ant.design/) has a rich set of components, only a small part of which has been implemented so far. There is still a lot of work to be done, and contributions are very welcome!
## Roadmap
- Common
- [x] Button
- [x] Icon
- Layout
- [ ] AutoCenter
- [ ] Divider
- [ ] Grid
- [ ] SafeArea
- [ ] Space
- Navigation
- [ ] CapsuleTabs
- [ ] IndexBar
- [ ] JumboTabs
- [x] NavBar
- [ ] SideBar
- [x] TabBar
- [ ] Tabs
- Data Display
- [ ] Avatar
- [ ] Card
- [x] Collapse
- [ ] Ellipsis
- [ ] FloatingPanel
- [ ] Image
- [ ] ImageViewer
- [ ] InfiniteScroll
- [x] List
- [ ] PageIndicator
- [ ] Steps
- [ ] Swiper
- [x] Tag
- [ ] WaterMark
- [ ] Footer
- Data Entry
- [ ] Cascader
- [ ] CascaderView
- [x] CheckList
- [ ] Checkbox
- [ ] Form
- [x] Input
- [ ] Picker
- [ ] PickerView
- [ ] Radio
- [ ] Rate
- [ ] SearchBar
- [ ] Selector
- [ ] Slider
- [ ] Stepper
- [ ] Switch
- [ ] TextArea
- Feedback
- [x] ActionSheet
- [ ] Dialog
- [ ] Empty
- [ ] ErrorBlock
- [ ] Loading
- [ ] Mask
- [ ] Modal
- [ ] Popover
- [x] Popup
- [ ] ProgressBar
- [ ] ProgressCircle
- [ ] PullToRefresh
- [ ] Result
- [ ] Skeleton
- [ ] SwipeAction
- [x] Toast
- Guidance
- [ ] Badge
- [ ] NoticeBar## License
MIT