at_sync_ui_flutter 1.0.0
at_sync_ui_flutter: ^1.0.0 copied to clipboard
A Flutter plugin project to provide UI widgets for displaying status of sync process in @protocol apps.

Now for a little internet optimism #
at_sync_ui_flutter #
A flutter plugin project to provide UI widgets for displaying status of sync process in @protocol apps.
Plugin description #
This plugin provides the following material and cuppertino widgets:
- AtSyncButton
- AtSyncIndicator
- AtSyncLinearProgressIndicator
- AtSyncText
- AtSyncDialog
- AtSyncSnackBar
Sample usage #
material.AtSyncButton(
isLoading: isLoading,
syncIndicatorColor: Colors.white,
child: IconButton(
icon: const Icon(Icons.android),
onPressed: _startLoading,
),
),
cupertino.AtSyncButton(
isLoading: isLoading,
syncIndicatorColor: Colors.white,
child: IconButton(
icon: const Icon(Icons.phone_iphone),
onPressed: _startLoading,
),
),