-
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.
fix: custom maps dialog confirmation failure ds-33 (#34)
* refactor(lib-interfaces): rename route paths constants ds-33 * feat(lib-interfaces): add mixed stories (with & without location fetch combined) ds-33 - Also cache post story picked image state on web reload. * fix: fix failed custom maps dialog confirmation on post story ds-33
- Loading branch information
Showing
20 changed files
with
707 additions
and
575 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
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,6 +1,6 @@ | ||
export "constants/app_route_auth_paths_constant.dart"; | ||
export "constants/app_route_paths_constant.dart"; | ||
export "constants/app_route_profile_paths_constant.dart"; | ||
export "constants/app_route_stories_paths_constant.dart"; | ||
export "constants/route_paths/auth_route_paths_constant.dart"; | ||
export "constants/route_paths/app_route_paths_constant.dart"; | ||
export "constants/route_paths/profile_route_paths_constant.dart"; | ||
export "constants/route_paths/stories_route_paths_constant.dart"; | ||
export "constants/dark_google_maps_style_constants.dart"; | ||
export "constants/date_format_constant.dart"; |
1 change: 1 addition & 0 deletions
1
lib/interfaces/libs/constants/dark_google_maps_style_constants.dart
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,3 +1,4 @@ | ||
/// https://mapstyle.withgoogle.com/ | ||
const kDarkGoogleMapsStyle = ''' | ||
[ | ||
{ | ||
|
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...stants/app_route_auth_paths_constant.dart → ...oute_paths/auth_route_paths_constant.dart
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,7 +1,7 @@ | ||
import "app_route_paths_constant.dart"; | ||
|
||
/// Sub paths of [AppRoutePaths.auth]. | ||
abstract final class AppRouteAuthPaths { | ||
abstract final class AuthRoutePaths { | ||
static const signIn = "/sign-in"; | ||
static const signUp = "/sign-up"; | ||
} |
2 changes: 1 addition & 1 deletion
2
...nts/app_route_profile_paths_constant.dart → ...e_paths/profile_route_paths_constant.dart
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,6 +1,6 @@ | ||
import "app_route_paths_constant.dart"; | ||
|
||
/// Sub paths of [AppRoutePaths.profile]. | ||
abstract final class AppRouteProfilePaths { | ||
abstract final class ProfileRoutePaths { | ||
static const root = ""; | ||
} |
2 changes: 1 addition & 1 deletion
2
...nts/app_route_stories_paths_constant.dart → ...e_paths/stories_route_paths_constant.dart
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
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
Oops, something went wrong.