Skip to content

Commit

Permalink
adding const in it
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayankpulse333 committed Dec 28, 2024
1 parent d630e2a commit 6ec2164
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Widget createEditProfilePage({required EditProfilePageViewModel viewModel}) {
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
],
home: Scaffold(
key: const Key('EditProfileScreenScaffold'),
home: const Scaffold(
key: Key('EditProfileScreenScaffold'),
body: EditProfilePage(),
),
);
Expand Down

0 comments on commit 6ec2164

Please sign in to comment.