-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1a85f4
commit 8d8832f
Showing
15 changed files
with
162 additions
and
29 deletions.
There are no files selected for viewing
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,3 @@ | ||
{ | ||
"java.configuration.updateBuildConfiguration": "interactive" | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
buildscript { | ||
ext.kotlin_version = '1.7.10' | ||
ext.kotlin_version = '1.8.0' | ||
repositories { | ||
google() | ||
mavenCentral() | ||
|
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 |
---|---|---|
|
@@ -12,4 +12,4 @@ abstract class _SettingsViewModelBase with Store { | |
void incrementNumber () { | ||
myNumber++; | ||
} | ||
} | ||
} |
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,33 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class BottomProvider extends ChangeNotifier { | ||
int _selectedIndex = 0; | ||
int get selectedIndex => _selectedIndex; | ||
final String _imageUrl ='https://cf.ltkcdn.net/family/images/std/200821-800x533r1-family.jpg'; | ||
String get imageUrl => _imageUrl; | ||
final String _imageFileName = 'fam.jpg'; | ||
String get imageFileName => _imageFileName; | ||
final String _homeLabel = "Ev"; | ||
String get homeLabel => _homeLabel; | ||
final String _activityLabel = "Aktivite"; | ||
String get activityLabel => _activityLabel; | ||
final String _chatLabel = "Sohbet"; | ||
String get chatLabel => _chatLabel; | ||
final String _profileLabel = "Profil"; | ||
String get profileLabel => _profileLabel; | ||
final String _pastTasks = "Geçmiş Görevler"; | ||
String get pastTasks => _pastTasks; | ||
final String _pastActivities = "Geçmiş Aktiviteler"; | ||
String get pastActivities => _pastActivities; | ||
final String _famSummary = "Aile Özeti"; | ||
String get famSummary => _famSummary; | ||
final String _exit = "Çıkış"; | ||
String get exit => _exit; | ||
|
||
void _onItemTapped(int index) { | ||
_selectedIndex = index; | ||
notifyListeners(); | ||
} | ||
|
||
get onItemTapped => _onItemTapped; | ||
} |
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 was deleted.
Oops, something went wrong.
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,21 @@ | ||
enum ImageItems { image1, image2, image3, image4 } | ||
|
||
extension ImageItemsExtension on ImageItems { | ||
String _imagePath() { | ||
switch (this) { | ||
case ImageItems.image1: | ||
return "image1"; | ||
|
||
case ImageItems.image2: | ||
return "image2"; | ||
|
||
case ImageItems.image3: | ||
return "image3"; | ||
|
||
case ImageItems.image4: | ||
return "image4"; | ||
} | ||
} | ||
|
||
String get imagePath => "assets/${_imagePath()}.jpg"; | ||
} |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -56,6 +56,7 @@ dependencies: | |
#Network | ||
http: ^1.0.0 | ||
connectivity_plus: ^5.0.2 | ||
geolocator: ^11.0.0 | ||
|
||
|
||
|
||
|