41 lines
1.0 KiB
Dart
41 lines
1.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:cpd/model/habit.dart';
|
|
//temporärer Speicher
|
|
List<Habit> habits = [
|
|
Habit(
|
|
isComplete: false,
|
|
title: "Drink Water",
|
|
subtitle: "Drink At Least 8 Cups Of Water",
|
|
icon: const Icon(Icons.local_drink),
|
|
),
|
|
Habit(
|
|
isComplete: false,
|
|
title: "Meditate",
|
|
subtitle: "Calm your monkey mind for at least 10 minutes",
|
|
icon: const Icon(Icons.self_improvement),
|
|
),
|
|
Habit(
|
|
isComplete: false,
|
|
title: "Exercise",
|
|
subtitle: "Go to the gym or do cardio",
|
|
icon: const Icon(Icons.sports_gymnastics),
|
|
),
|
|
Habit(
|
|
isComplete: false,
|
|
title: "Learn Spanish",
|
|
subtitle: "Study Spanish for 20 min",
|
|
icon: const Icon(Icons.language),
|
|
),
|
|
Habit(
|
|
isComplete: false,
|
|
title: "Wake up early",
|
|
subtitle: "Enjoy the morning",
|
|
icon: const Icon(Icons.alarm),
|
|
),
|
|
Habit(
|
|
isComplete: false,
|
|
title: "Journal",
|
|
subtitle: "Write Down 3 things that you appreciate",
|
|
icon: const Icon(Icons.edit),
|
|
),
|
|
]; |