Skip to content

Commit

Permalink
Merge pull request #27 from tanishq5414/master
Browse files Browse the repository at this point in the history
changing route for add notes
  • Loading branch information
tanishq5414 authored Jul 30, 2024
2 parents a963721 + 77bcc76 commit 251a2ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/features/home/views/home_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import 'package:flutter/material.dart';
import 'package:flutter_octicons/flutter_octicons.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:internet_connection_checker/internet_connection_checker.dart';
import 'package:companion/features/notes/views/add_notes_view.dart';

class HomeView extends ConsumerStatefulWidget {
const HomeView({super.key});
Expand Down Expand Up @@ -148,7 +149,7 @@ class _HomeViewState extends ConsumerState<HomeView> {
SectionChip(
onTap: () {
Navigator.push(context,
RecentlyAccessedView.route());
AddNotesView.route());
},
label: 'Add Notes',
),
Expand Down

0 comments on commit 251a2ba

Please sign in to comment.