Skip to content

Commit

Permalink
app : review fix name class body
Browse files Browse the repository at this point in the history
  • Loading branch information
Tayebsed93 committed Feb 20, 2024
1 parent 5119eb4 commit e53ab57
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/lib/ui/components/navigation_rail/navigation_rail.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,19 @@ class _ComponentNavigationBarState extends State<ComponentNavigationRail> {
),
key: _scaffoldKey,
appBar: MainAppBar(AppLocalizations.of(context)!.componentNavigationRail),
body: _NavBarDemo(),
body: _NavRailDemo(),
));
}
}

class _NavBarDemo extends StatefulWidget {
_NavBarDemo();
class _NavRailDemo extends StatefulWidget {
_NavRailDemo();

@override
State<_NavBarDemo> createState() => _NavBarDemoState();
State<_NavRailDemo> createState() => _NavRailDemoState();
}

class _NavBarDemoState extends State<_NavBarDemo> {
class _NavRailDemoState extends State<_NavRailDemo> {
late int selectedIndex;

@override
Expand Down

0 comments on commit e53ab57

Please sign in to comment.