Skip to content

Commit

Permalink
t.
Browse files Browse the repository at this point in the history
  • Loading branch information
raysernick committed Oct 23, 2019
1 parent 9038db7 commit e42fb8a
Show file tree
Hide file tree
Showing 101 changed files with 7,927 additions and 3,201 deletions.
Binary file removed assets/employer-1.png
Binary file not shown.
1 change: 1 addition & 0 deletions assets/employer-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/employer-2.png
Binary file not shown.
1 change: 1 addition & 0 deletions assets/employer-2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/employer-3.png
Binary file not shown.
1 change: 1 addition & 0 deletions assets/employer-3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/grunge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/grunge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icon17.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icon18.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icon19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icon20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icon21.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/ketapang.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion assets/ketapang.svg

This file was deleted.

Binary file added assets/ktp.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/logo-hitam.png
Binary file not shown.
Binary file removed assets/seeker-1.png
Binary file not shown.
1 change: 1 addition & 0 deletions assets/seeker-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/seeker-2.png
Binary file not shown.
1 change: 1 addition & 0 deletions assets/seeker-2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/seeker-3.png
Binary file not shown.
1 change: 1 addition & 0 deletions assets/seeker-3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/vector-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/vector-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 10 additions & 15 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,18 @@ import 'package:provider/provider.dart';
import 'package:space/navigator_employer.dart';
import 'package:space/navigator_seeker.dart';
import 'package:space/src/app.dart';
import 'package:space/src/core/models/apply.dart';
import 'package:space/src/core/models/auth.dart';
import 'package:space/src/core/models/cart.dart';

import 'package:space/src/core/models/jobs.dart';
import 'package:space/src/core/models/save.dart';
import 'package:space/src/ui/auth/employer/home_employer.dart';
import 'package:space/src/ui/auth/employer/login_signup_employer.dart';
import 'package:space/src/ui/auth/employer/ui_get_started_employer.dart';
import 'package:space/src/ui/auth/seeker/home_seeker.dart';
import 'package:space/src/ui/auth/seeker/ui_get_started_seeker.dart';
import 'package:space/src/ui/employer/layout/employer_edit_post.dart';
import 'package:space/src/ui/employer/screens/employer_posted_screen.dart';
import 'package:space/src/ui/employer/screens/employer_tabs.dart';
import 'package:space/src/ui/employer/widgets/flare_interview_employer.dart';
import 'package:space/src/ui/seeker/layout/job_details.dart';
import 'package:space/src/ui/seeker/screens/applys_screen.dart';
import 'package:space/src/ui/seeker/screens/cart_screen.dart';
import 'package:space/src/ui/seeker/screens/seeker_tabs.dart';
import 'package:space/src/ui/components/splash_screen.dart';
import 'package:space/src/ui/seeker/widgets/flare_interview_seeker.dart';

import 'package:space/src/ui/theme/theme.dart';

Expand All @@ -36,12 +29,12 @@ class DreamJobApp extends StatelessWidget {
// ChangeNotifierProvider.value(
// value: Auth(),
// ),
ChangeNotifierProvider.value(
value: Jobs(),
),
ChangeNotifierProvider.value(
value: Save(),
),
// ChangeNotifierProvider.value(
// value: Jobs(),
// ),
// ChangeNotifierProvider.value(
// value: Save(),
// ),
// ChangeNotifierProxyProvider<Auth, Applys>(
// builder: (ctx, auth, previousApplys) => Applys(
// auth.token,
Expand All @@ -61,6 +54,7 @@ class DreamJobApp extends StatelessWidget {
EditPost.routeName: (ctx) => EditPost(),
EmployerNavigator.routeName: (ctx) => EmployerNavigator(),
UiGetStartedEmployer.routeName: (ctx) => UiGetStartedEmployer(),
InterviewEmployer.routeName: (ctx) => InterviewEmployer(),

HomePageSeeker.routeName: (ctx) => HomePageSeeker(),
JobDetails.routeName: (ctx) => JobDetails(),
Expand All @@ -69,6 +63,7 @@ class DreamJobApp extends StatelessWidget {
// // ApplysScreen.routeName: (ctx) => ApplysScreen(),
SeekerNavigator.routeName: (ctx) => SeekerNavigator(),
UiGetStartedSeeker.routeName: (ctx) => UiGetStartedSeeker(),
InterviewSeeker.routeName: (ctx) => InterviewSeeker(),
},
),
);
Expand Down
22 changes: 0 additions & 22 deletions lib/main1.dart

This file was deleted.

5 changes: 2 additions & 3 deletions lib/navigator_employer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import 'package:feather_icons_flutter/feather_icons_flutter.dart';
import 'package:flutter/services.dart';
import 'package:material_design_icons_flutter/material_design_icons_flutter.dart';
import 'package:space/src/ui/auth/employer/home_employer.dart';
import 'package:space/src/ui/chat/inbox_ui_list.dart';
import 'package:space/src/ui/components/landing_404_page.dart';
import 'package:space/src/ui/chat/chat_list_employer.dart';
import 'package:space/src/ui/components/notification.dart';
import 'package:space/src/ui/employer/layout/employer_edit_post.dart';
import 'package:space/src/ui/employer/screens/employer_tabs.dart';
Expand All @@ -28,7 +27,7 @@ class _EmployerNavigatorState extends State<EmployerNavigator> {
HomePageEmployer(),
EmployerTabs(),
EditPost(),
InboxUiList(),
ChatListEmployer(),
NotificationUi(),
];
@override
Expand Down
4 changes: 2 additions & 2 deletions lib/navigator_seeker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'package:feather_icons_flutter/feather_icons_flutter.dart';
import 'package:flutter/services.dart';
import 'package:material_design_icons_flutter/material_design_icons_flutter.dart';
import 'package:space/src/ui/auth/seeker/home_seeker.dart';
import 'package:space/src/ui/chat/inbox_ui_list.dart';
import 'package:space/src/ui/chat/chat_list_seeker.dart';
import 'package:space/src/ui/components/notification.dart';
import 'package:space/src/ui/seeker/layout/job_search.dart';
import 'package:space/src/ui/seeker/screens/seeker_tabs.dart';
Expand All @@ -28,7 +28,7 @@ class _SeekerNavigatorState extends State<SeekerNavigator> {
HomePageSeeker(),
SeekerTabs(),
JobSearch(),
InboxUiList(),
ChatListSeeker(),
NotificationUi(),
];
@override
Expand Down
19 changes: 0 additions & 19 deletions lib/root.dart

This file was deleted.

45 changes: 0 additions & 45 deletions lib/routes.dart

This file was deleted.

61 changes: 0 additions & 61 deletions lib/seeker_app.dart

This file was deleted.

Loading

0 comments on commit e42fb8a

Please sign in to comment.