Skip to content

Commit

Permalink
delete unused code (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwson-automation authored Aug 17, 2024
1 parent c92a1a3 commit 08dbc6d
Show file tree
Hide file tree
Showing 120 changed files with 72 additions and 7,322 deletions.
129 changes: 0 additions & 129 deletions lib/core/OssLicenseScreen.dart

This file was deleted.

24 changes: 11 additions & 13 deletions lib/core/TopScreen.dart
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import 'package:blueberry_flutter_template/feature/onboarding/OnboardingScreen.dart';
import 'package:blueberry_flutter_template/feature/map/PoliceMapScreen.dart';
import 'package:blueberry_flutter_template/feature/mypage/MyPageScreen.dart';
import 'package:blueberry_flutter_template/feature/voiceOutput/VoiceOutputScreen.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';

import '../feature/login/LoginScreen.dart';
import '../feature/map/PoliceMapScreen.dart';
import '../feature/match/MatchScreen.dart';

/// TopScreen.dart
///
/// Top Page
Expand All @@ -25,9 +23,9 @@ class TopScreen extends ConsumerWidget {
final selectedIndex = ref.watch(selectedIndexProvider);

final List<Widget> pages = [
const VoiceOutputScreen(),
const PoliceMapScreen(),
const MatchScreen(),
const LoginScreen(),
const MyPageScreen(),
];

return Scaffold(
Expand All @@ -42,17 +40,17 @@ class TopScreen extends ConsumerWidget {
backgroundColor: Colors.blueGrey[100],
items: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.podcasts),
label: 'Post',
icon: Icon(Icons.mic),
label: 'Voice',
),
BottomNavigationBarItem(
icon: Icon(Icons.pets),
label: 'match',
icon: Icon(Icons.map),
label: 'Map',
),
BottomNavigationBarItem(
icon: Icon(Icons.account_circle),
icon: Icon(Icons.person),
label: 'MyPage',
)
),
],
currentIndex: selectedIndex,
onTap: (index) =>
Expand Down
26 changes: 0 additions & 26 deletions lib/core/widget/MiniAvatarWidget.dart

This file was deleted.

22 changes: 0 additions & 22 deletions lib/core/widget/NickNameTextWidget.dart

This file was deleted.

27 changes: 0 additions & 27 deletions lib/core/widget/SquareTitleWidget.dart

This file was deleted.

20 changes: 0 additions & 20 deletions lib/feature/admin/AdminLoadingPage.dart

This file was deleted.

98 changes: 0 additions & 98 deletions lib/feature/admin/AdminScreen.dart

This file was deleted.

Loading

0 comments on commit 08dbc6d

Please sign in to comment.