-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
33 changed files
with
565 additions
and
116 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" | ||
#include "Generated.xcconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" | ||
#include "Generated.xcconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
platform :ios, '14.0' | ||
|
||
ENV['COCOAPODS_DISABLE_STATS'] = 'true' | ||
|
||
project 'Runner', { | ||
'Debug' => :debug, | ||
'Profile' => :release, | ||
'Release' => :release, | ||
} | ||
|
||
def flutter_root | ||
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) | ||
unless File.exist?(generated_xcode_build_settings_path) | ||
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" | ||
end | ||
|
||
File.foreach(generated_xcode_build_settings_path) do |line| | ||
matches = line.match(/FLUTTER_ROOT\=(.*)/) | ||
return matches[1].strip if matches | ||
end | ||
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" | ||
end | ||
|
||
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) | ||
|
||
flutter_ios_podfile_setup | ||
|
||
target 'Runner' do | ||
use_frameworks! | ||
use_modular_headers! | ||
|
||
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) | ||
end | ||
|
||
post_install do |installer| | ||
installer.pods_project.targets.each do |target| | ||
flutter_additional_ios_build_settings(target) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
PODS: | ||
- Flutter (1.0.0) | ||
- Google-Maps-iOS-Utils (5.0.0): | ||
- GoogleMaps (~> 8.0) | ||
- google_maps_flutter_ios (0.0.1): | ||
- Flutter | ||
- Google-Maps-iOS-Utils (< 7.0, >= 5.0) | ||
- GoogleMaps (< 10.0, >= 8.4) | ||
- GoogleMaps (8.4.0): | ||
- GoogleMaps/Maps (= 8.4.0) | ||
- GoogleMaps/Base (8.4.0) | ||
- GoogleMaps/Maps (8.4.0): | ||
- GoogleMaps/Base | ||
|
||
DEPENDENCIES: | ||
- Flutter (from `Flutter`) | ||
- google_maps_flutter_ios (from `.symlinks/plugins/google_maps_flutter_ios/ios`) | ||
|
||
SPEC REPOS: | ||
trunk: | ||
- Google-Maps-iOS-Utils | ||
- GoogleMaps | ||
|
||
EXTERNAL SOURCES: | ||
Flutter: | ||
:path: Flutter | ||
google_maps_flutter_ios: | ||
:path: ".symlinks/plugins/google_maps_flutter_ios/ios" | ||
|
||
SPEC CHECKSUMS: | ||
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 | ||
Google-Maps-iOS-Utils: 66d6de12be1ce6d3742a54661e7a79cb317a9321 | ||
google_maps_flutter_ios: e31555a04d1986ab130f2b9f24b6cdc861acc6d3 | ||
GoogleMaps: 8939898920281c649150e0af74aa291c60f2e77d | ||
|
||
PODFILE CHECKSUM: 1ae9405747c555b46415ec1fb8dd3e15c1cb409e | ||
|
||
COCOAPODS: 1.15.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
frontend/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class AppColors { | ||
static const Color primaryColor = Color(0xffffffff); | ||
static const Color selectedColor = Color(0xa0a0a0a0); | ||
static const Color noSelectedColor = Color(0xcccccccc); | ||
static const Color backgroundColor = Color(0xd9d9d9d9); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:frontend/widgets/custom_app_bar.dart'; | ||
import 'package:frontend/colors/app_colors.dart'; | ||
import 'package:frontend/widgets/custom_bottom_navigation_bar.dart'; | ||
import 'package:frontend/widgets/home_recommend_list.dart'; | ||
import 'package:frontend/widgets/search_box.dart'; | ||
|
||
class HomePage extends StatefulWidget { | ||
const HomePage({super.key}); | ||
|
||
@override | ||
_HomePageState createState() => _HomePageState(); | ||
} | ||
|
||
class _HomePageState extends State<HomePage> { | ||
@override | ||
Widget build(BuildContext context) { | ||
return const Scaffold( | ||
appBar: CustomAppBar(), | ||
backgroundColor: AppColors.backgroundColor, | ||
body: SingleChildScrollView( | ||
child: Padding( | ||
padding: EdgeInsets.all(10.0), | ||
child: Column( | ||
children: [ | ||
Text('data'), | ||
SizedBox( | ||
height: 200, | ||
child: HomeRecommendList(), | ||
), | ||
SearchBox(), | ||
], | ||
), | ||
), | ||
), | ||
bottomNavigationBar: CustomBottomNavigationBar(), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:frontend/widgets/custom_app_bar.dart'; | ||
import 'package:frontend/colors/app_colors.dart'; | ||
import 'package:frontend/widgets/custom_bottom_navigation_bar.dart'; | ||
import 'package:frontend/widgets/home_recommend_list.dart'; | ||
import 'package:frontend/widgets/search_box.dart'; | ||
|
||
class SearchPage extends StatefulWidget { | ||
const SearchPage({super.key}); | ||
|
||
@override | ||
_SearchPageState createState() => _SearchPageState(); | ||
} | ||
|
||
class _SearchPageState extends State<SearchPage> { | ||
@override | ||
Widget build(BuildContext context) { | ||
return const Scaffold( | ||
appBar: CustomAppBar(), | ||
backgroundColor: AppColors.backgroundColor, | ||
body: SingleChildScrollView( | ||
child: Padding( | ||
padding: EdgeInsets.all(10.0), | ||
child: Column( | ||
children: [ | ||
Text('data'), | ||
SizedBox( | ||
height: 200, | ||
child: HomeRecommendList(), | ||
), | ||
SearchBox(), | ||
], | ||
), | ||
), | ||
), | ||
bottomNavigationBar: CustomBottomNavigationBar(), | ||
); | ||
} | ||
} |
Oops, something went wrong.