cpd/lib/model/habit_list.dart

47 lines
1.4 KiB
Dart
Raw Normal View History

2024-05-09 09:46:23 +02:00
import 'package:flutter/material.dart';
List<List<dynamic>>habits = [
[
false, //If it is complete or not
"Drink Water", //The title of the habit
"Drink At Least 8 Cups Of Water", //The subtitle of the habit,
const Icon(Icons.local_drink) //The icon of the habit
],
[
false, //If it is complete or not
"Meditate", //The title of the habit
"Calm your monkey mind fot at least 10 minutes", //The subtitle of the habit,
const Icon(Icons.self_improvement) //The icon of the habit
],
[
false, //If it is complete or not
"Exercise", //The title of the habit
"Go to the gym or do cardio", //The subtitle of the habit,
const Icon(Icons.sports_gymnastics), //The icon of the habit
],
[
false, //If it is complete or not
"Learn Spanish", //The title of the habit
"Study Spanish for 20 min", //The subtitle of the habit,
const Icon(Icons.language), //The icon of the habit
],
[
false, //If it is complete or not
"Wake up early", //The title of the habit
"Enjoy the morning", //The subtitle of the habit,
const Icon(Icons.alarm), //The icon of the habit
],
[
false, //If it is complete or not
"Journal", //The title of the habit
"Write Down 3 things that you appreciate", //The subtitle of the habit,
const Icon(Icons.edit), //The icon of the habit
],
];
class Habitlist {
void _addHabit() {
}
}