Skip to content

Instantly share code, notes, and snippets.

View ygorrrteles's full-sized avatar

Ygor Teles ygorrrteles

  • Goiânia
View GitHub Profile
@ygorrrteles
ygorrrteles / getx_todo_list.dart
Created October 29, 2020 15:15 — forked from roipeker/getx_todo_list.dart
Sample GetX todo list.
import 'package:flutter/material.dart';
import 'package:get/get.dart';
class SampleTodoDemo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return GetMaterialApp(
home: TodoPage(),
);
}