antd_flutter_mobile 5.0.0-alpha.2  antd_flutter_mobile: ^5.0.0-alpha.2 copied to clipboard
antd_flutter_mobile: ^5.0.0-alpha.2 copied to clipboard
Antd Flutter implementation, zero dependencies, ultra-lightweight (only 200kB), 50+ components, complete Antd Token system implementation.
Antd Flutter Mobile
Antd Flutter Mobile is an implementation of Ant Design Mobile for the Flutter platform. With zero dependencies and an ultra-lightweight package (only 200kB in total), it offers 50+ high-quality components covering common interaction scenarios such as themes, overlays, forms, and precise list positioning.
English · 中文
✨ Features #
- Zero dependencies, ready to use upon installation
- Feather-light, The complete package weighs in at just 218KB, icons included.
- Innovative style system, not bound to any specific UI implementation—flexible and powerful, allowing you to customize every element you see
- Self-contained solution, meeting all needs from pop-ups to scroll interactions with one component library
📦 Installation #
flutter pub add antd_flutter_mobile
🔨 Example #
import 'package:antd_flutter_mobile/index.dart';
@override
Widget build(BuildContext context) {
  return const AntdButton(
    child: Text("Button"),
    onTap:() {
      AntdToast.show(
        "Toast",
      );
    }
  );
}