Skip to content

Commit 93a94cb

Browse files
committed
Revert "kljk"
This reverts commit d28663d, reversing changes made to 143b88e.
1 parent d28663d commit 93a94cb

14 files changed

+2
-904
lines changed

android/app/build.gradle

-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ android {
3737
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
3838
applicationId "com.example.deadcode_hackathon"
3939
minSdkVersion 16
40-
multiDexEnabled true
4140
targetSdkVersion 30
4241
versionCode flutterVersionCode.toInteger()
4342
versionName flutterVersionName
@@ -57,6 +56,5 @@ flutter {
5756
}
5857

5958
dependencies {
60-
implementation 'com.android.support:multidex:1.0.3'
6159
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
6260
}

lib/app/routes.dart

+1-29
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
import 'package:eogretmen/views/detail.dart';
2-
import 'package:eogretmen/views/signin.dart';
3-
import 'package:eogretmen/views/signup.dart';
41
import 'package:flutter/material.dart';
5-
<<<<<<< HEAD
62
import 'package:eogretmen/widgets/main_app_widget.dart';
73
import 'package:eogretmen/views/search/search_view.dart';
84
import 'package:eogretmen/views/splash/splash_view.dart';
@@ -14,17 +10,7 @@ class AppRouteGenerator {
1410
static const String APP_ROUTE_LOGIN = "/LogIn";
1511
static const String APP_ROUTE_REGISTER = "/Register";
1612
static const String APP_ROUTE_SEARCH = "/Search";
17-
=======
18-
import 'package:eogretmen/views/splash_view.dart';
19-
20-
class AppRouteGenerator {
21-
static const String APP_ROUTE_SPLASH = "/Splash";
22-
static const String APP_ROUTE_LOGIN = "/SignIn";
23-
static const String APP_ROUTE_SIGNUP = "/SignUp";
24-
>>>>>>> burkay
2513
static const String APP_ROUTE_HOME = "/Home";
26-
static const String APP_ROUTE_DETAIL = "/Details";
27-
static const String APP_ROUTE_PROFILE = "/Details";
2814

2915
Route getAppRoutes(RouteSettings routeSettings) {
3016
switch (routeSettings.name) {
@@ -39,21 +25,7 @@ class AppRouteGenerator {
3925
return MaterialPageRoute<void>(
4026
fullscreenDialog: true,
4127
settings: routeSettings,
42-
builder: (BuildContext context) => Sign(),
43-
);
44-
45-
case APP_ROUTE_SIGNUP:
46-
return MaterialPageRoute<void>(
47-
fullscreenDialog: true,
48-
settings: routeSettings,
49-
builder: (BuildContext context) => Register(),
50-
);
51-
52-
case APP_ROUTE_DETAIL:
53-
return MaterialPageRoute<void>(
54-
fullscreenDialog: true,
55-
settings: routeSettings,
56-
builder: (BuildContext context) => Details(),
28+
builder: (BuildContext context) => LogIn(),
5729
);
5830

5931
case APP_ROUTE_REGISTER:

lib/img/2.png

-25.7 KB
Binary file not shown.

lib/resource/constants.dart

-33
This file was deleted.

lib/resource/themeColors.dart

-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ class ThemeColors {
44
static const Color WHITE = Color(0xffFFFFFF);
55
static const Color BLACK = Color(0xff000000);
66
static const Color GRAY = Color(0xff757575);
7-
<<<<<<< HEAD
87
static const Color LIGHT_GRAY = Color(0xffF5F5F7);
9-
=======
10-
>>>>>>> burkay
118

129
static const Color LIGHT_BLUE = Color(0xff93A7E1);
1310
static const Color LIGHT_NAVY_BLUE = Color(0xff3c435e);

lib/resource/utils.dart

-112
This file was deleted.

lib/state/detailsState.dart

-24
This file was deleted.

lib/state/loginState.dart

-61
This file was deleted.

0 commit comments

Comments
 (0)