Skip to content

Commit

Permalink
feat: add RoverPhoto class to manage photos taken by the rover
Browse files Browse the repository at this point in the history
  • Loading branch information
0xbaggi committed Jul 7, 2024
1 parent 247ef86 commit e44f717
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/pages/rover_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ class _RoverPageState extends State<RoverPage> {
borderRadius: BorderRadius.circular(borderRadius),
icon: CustomIcon(
name: 'cameras', size: 40, color: backgroundColor),
onPressed: () {},
onPressed: () {
setState(() {
Navigator.pushNamed(context, '/cameras');
});
},
),
SizedBox(height: spaceBetweenWidgets / 2),
Button(
Expand Down

0 comments on commit e44f717

Please sign in to comment.