Skip to content

Instantly share code, notes, and snippets.

@hitherejoe
Created December 17, 2018 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hitherejoe/9761186c4a7b5dab136b61e0abc0480c to your computer and use it in GitHub Desktop.
Save hitherejoe/9761186c4a7b5dab136b61e0abc0480c to your computer and use it in GitHub Desktop.
class PlatformProgress extends PlatformWidget<CupertinoActivityIndicator,
CircularProgressIndicator> {
PlatformProgress();
@override
CircularProgressIndicator createAndroidWidget(BuildContext context) {
return CircularProgressIndicator();
}
@override
CupertinoActivityIndicator createIosWidget(BuildContext context) {
return CupertinoActivityIndicator();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment