Skip to content

Commit

Permalink
resolve merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
o-bagge committed Feb 20, 2024
2 parents 7d96c46 + 1e9d41c commit 305d803
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions open_earable/lib/apps_tab.dart
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,26 @@ class AppsTab extends StatelessWidget {
data: materialTheme,
child: TightnessMeter(_openEarable)))));
}),
AppInfo(
iconData: Icons.face_5,
title: "Powernapper Alarm Clock",
description: "Powernapping timer!",
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => SleepHomeScreen(_openEarable)));
}),
AppInfo(
iconData: Icons.music_note,
title: "Tightness Meter",
description: "Track your headbanging.",
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => TightnessMeter(_openEarable)));
}),
// ... similarly for other apps
];
}
Expand Down

0 comments on commit 305d803

Please sign in to comment.