Skip to content

Commit

Permalink
rename favorites service file name change
Browse files Browse the repository at this point in the history
  • Loading branch information
ninest committed Apr 18, 2020
1 parent 1d0c5d5 commit 7c8b607
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion lib/components/home/bus_stop_expansion_tile.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:nextbussg/components/home/timings_not_available.dart';
import 'package:nextbussg/components/core/mrt_stations.dart';
import 'package:nextbussg/components/search/stop_page/stop_overview_page.dart';
import 'package:nextbussg/services/renameFavorites.dart';
import 'package:nextbussg/services/rename_favorites.dart';
import 'package:nextbussg/styles/tile_color.dart';
import 'package:nextbussg/utils/route.dart';
import 'package:flutter/material.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/components/more/rename_favorites/bottom_sheets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:nextbussg/components/core/buttons/button.dart';
import 'package:nextbussg/providers/home_rebuilder.dart';
import 'package:nextbussg/utils/extensions.dart';
import 'package:flutter_markdown/flutter_markdown.dart';
import 'package:nextbussg/services/renameFavorites.dart';
import 'package:nextbussg/services/rename_favorites.dart';
import 'package:nextbussg/components/core/bottom_sheet_template.dart';
import 'package:nextbussg/components/core/space.dart';
import 'package:provider/provider.dart';
Expand Down
File renamed without changes.
20 changes: 10 additions & 10 deletions lib/tabbed_app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ class TabbedAppState extends State<TabbedApp> {
body: Stack(
children: <Widget>[
Align(
alignment: Alignment.topCenter,
child:
// use below to not save state between tab state
// _tabViews[_selectedIndex]
alignment: Alignment.topCenter,
child:
// use below to not save state between tab state
_tabViews[_selectedIndex]

// use below to save state between tab switch
IndexedStack(
index: _selectedIndex,
children: _tabViews,
),
),
// use below to save state between tab switch
// IndexedStack(
// index: _selectedIndex,
// children: _tabViews,
// ),
),
Align(
alignment: Alignment.bottomCenter,
child: BottomNavigationBar(
Expand Down

0 comments on commit 7c8b607

Please sign in to comment.