Skip to content

Instantly share code, notes, and snippets.

@ttlg
Created September 5, 2020 06:32
Show Gist options
  • Save ttlg/51f1012a523c654b27265a8b6b24a584 to your computer and use it in GitHub Desktop.
Save ttlg/51f1012a523c654b27265a8b6b24a584 to your computer and use it in GitHub Desktop.
sort order
enum SortOrder {
ASC,
DESC,
}
final _sortOrder = StateProvider.autoDispose((ref) => SortOrder.ASC); 
@ttlg
Copy link
Author

ttlg commented Sep 5, 2020

Pragmatic architecture using Riverpod

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment