intl_ui 0.1.4 copy "intl_ui: ^0.1.4" to clipboard
intl_ui: ^0.1.4 copied to clipboard

A Flutter UI package that provides internationalized widgets and components for building multilingual applications.

Intl UI Components #

常规组建 常规组建 常规组建
常规组建 常规组建 常规组建

🧩 组件列表 #

表单组件 #

1. IntlDownButton

功能:国际化下拉按钮

IntlDownButton
(
text: 'Icon Text Button',
onPressed: () {},
)

2. ToggleButtonGroup

功能:可滚动切换按钮组

ToggleButtonGroup
(
labels: ["one", "two", "three", "four", "five", "six"],
onSelected: (index) {},
)

布局组件 #

1. IntlRow / IntlWrap

功能:智能流式布局

IntlRow
(
spacing: 8,
children: [/*...*/],
)

IntlWrap(
step: 3,
runSpacing: 12,
children:
[ /*...*/
]
,
)

2. DottedDividerWidget

功能:多向虚线分割

DottedDividerWidget
(
color: Colors.blue,
strokeWidth: 6,
dashSpace:
10
,
)

展示组件 #

1. UniversalCard

功能:超级卡片容器

UniversalCard
(
gradient: LinearGradient(/*...*/),
onPress: () => print('Card tapped'),
child: YourContent(
)
,
)

2. RadiusImage

功能:智能圆形/圆角图片

RadiusImage
(
image: NetworkImage(url),
borderWidth:2,
)

3. JsonViewer

功能:JSON 数据可视化

JsonViewer
(
jsonData
:
jsonDecode
(
jsonString
)
)

4. DioLoggerScreen,

功能:Dio 日志查看器

///导航按钮
DioLoggerNavButton
(),

Dio dio = Dio();

///添加拦截器
dio.interceptors.add
(
DioLoggerInterceptors());
dio.get('https://xxx.xxxx.com/api/v1/test'
);

联系方式 #

  • QQ:3496354336
1
likes
145
points
694
downloads

Publisher

verified publisherjsontodart.cn

Weekly Downloads

A Flutter UI package that provides internationalized widgets and components for building multilingual applications.

Homepage
Repository (GitHub)

Topics

#widget

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

dio, flutter, intl

More

Packages that depend on intl_ui