47 lines
1.4 KiB
Dart
47 lines
1.4 KiB
Dart
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() {
|
|
|
|
}
|
|
} |