Created
June 14, 2022 09:38
-
-
Save FlutterWiz/cc6d02971988c5a585a5d49fc5b9d6b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@override | |
Widget build(BuildContext context, WidgetRef ref) { | |
final todoList = ref.watch(todoNotifierProvider.select((state) => state.todoList)); | |
final reversedTodoList = List<TodoModel>.from(todoList.reversed); | |
. | |
. | |
. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment