-
-
Notifications
You must be signed in to change notification settings - Fork 512
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anyone using provider in production/open-source apps? #62
Comments
I recommended this Structure for Provider. |
Diet Friends (다이어트 프렌즈) is a chatbot app to help your diet. Currently only Korean is supported. iOS: https://apps.apple.com/app/id1466899980 |
我也写了一篇 Provider 的中文介绍 https://juejin.im/post/5d00a84fe51d455a2f22023f |
Fun Android with Provider mvvm Widget build(BuildContext context) {
super.build(context);
return ProviderWidget<StructureListModel>(
model: StructureListModel(widget.cid),
onModelReady: (model) => model.initData(),
builder: (context, model, child) {
if (model.busy) {
return ViewStateSkeletonList(
builder: (context, index) => ArticleSkeletonItem(),
);
} else if (model.error) {
return ViewStateWidget(onPressed: model.initData);
} else if (model.empty) {
return ViewStateEmptyWidget(onPressed: model.initData);
}
return SmartRefresher(
controller: model.refreshController,
header: WaterDropHeader(),
footer: RefresherFooter(),
onRefresh: model.refresh,
onLoading: model.loadMore,
enablePullUp: true,
child: ListView.builder(
itemCount: model.list.length,
itemBuilder: (context, index) {
Article item = model.list[index];
return ArticleItemWidget(item);
}));
},
);
} Thanks |
can you use provider for authentication? |
Yes @irperera ! It works specially well with firebase_auth, take a look here for an example of how you could do it. |
Yes, I use it in production. My |
iOS: https://apps.apple.com/us/app/gittouch/id1452042346 Source Code: https://github.com/git-touch/git-touch |
Hey! I'm using Provider as a core of App Icon Tools (app for preview (shapes/animations), issue warnings, and generation of (launcher/desktop) app icons for Flutter apps (web, macOS, Windows, Android Adaptive, etc. icons including), which is available on all operating systems that Flutter offers to build. iOS: coming not so soon Source Code: https://github.com/tsinis/app_icon_tools Version: 4.3.2+3 |
More |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Similar to:
reactiveui/ReactiveUI#979
PrismLibrary/Prism#1016
brianegan/flutter_redux#86
felangel/bloc#139
If anyone is using the library then please give your input.
Use the following template:
If available on stores
iOS:
Android:
If open source
Source Code:
Your opinion
Version: ?
Years of experience: ?
Good: ?
Bad: ?
Thank you very much!
The text was updated successfully, but these errors were encountered: