-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Copy button integration done (#6) * @darshmashru profile page updates (#8) * Profile Page Changes * Few cosmetic changes, removed Apple Sign In * changes in Directories (#10) * Profile PR Error Fixed * Temporary MD, Hardcoded Text API text is currently NOT displaying * Converted to Stateful, Added Version Number * Updated Widget and implemented persistent storage for user name using SharedPreferences * Added codeblockDecoration * integrated recommended XCode Updates * ENABLE_USER_SCRIPT_SANDBOXING is now no * Added the functionality of dark mode and light mode switcher * Fix login and register page dark mode and alignment * fixed the logo alignment and the color scheme on profile and login page * Removed the automatically Imply leading to prevent formation of two back buttons * forgot password Added with login ui * added settings.dart , flutter dashbubble extenstion made it such that the settings page is only visible to android users not ios * fixed oveflow and added Palm widget for the new widget * Closing 11 output text highlighting (#21) * Code Box color fix is remaining * All the dependency updates Updated Flutter and Dart SDKs Updated Pods Updated Pub Minimum iOS Version is now iOS 13 * 22 allow to change safety options (#23) * Updated project's Dev Team for DM MBP * Fixed HyperLink and Improved UI * Made the safety page, RiverPod is pending. * Added Riverpod state management State management added for topP, topK and temperature parameters. Yet to add for SafetySettings (dropdown) * Updated topP * Pub and Pods upgraded. --------- Co-authored-by: vedantheda <[email protected]> * new description * Feat: Added Flutter Web (Vercel) (#29) * Release 0.2.0+2 (#24) * Copy button integration done (#6) * @darshmashru profile page updates (#8) * Profile Page Changes * Few cosmetic changes, removed Apple Sign In * changes in Directories (#10) * Profile PR Error Fixed * Temporary MD, Hardcoded Text API text is currently NOT displaying * Converted to Stateful, Added Version Number * Updated Widget and implemented persistent storage for user name using SharedPreferences * Added codeblockDecoration * integrated recommended XCode Updates * ENABLE_USER_SCRIPT_SANDBOXING is now no * Added the functionality of dark mode and light mode switcher * Fix login and register page dark mode and alignment * fixed the logo alignment and the color scheme on profile and login page * Removed the automatically Imply leading to prevent formation of two back buttons * forgot password Added with login ui * added settings.dart , flutter dashbubble extenstion made it such that the settings page is only visible to android users not ios * fixed oveflow and added Palm widget for the new widget * Closing 11 output text highlighting (#21) * Code Box color fix is remaining * All the dependency updates Updated Flutter and Dart SDKs Updated Pods Updated Pub Minimum iOS Version is now iOS 13 * 22 allow to change safety options (#23) * Updated project's Dev Team for DM MBP * Fixed HyperLink and Improved UI * Made the safety page, RiverPod is pending. * Added Riverpod state management State management added for topP, topK and temperature parameters. Yet to add for SafetySettings (dropdown) * Updated topP * Pub and Pods upgraded. --------- Co-authored-by: vedantheda <[email protected]> * new description --------- Co-authored-by: PrabirKalwani <[email protected]> Co-authored-by: vedantheda <[email protected]> * Test Vercel Deployment 1 * Test Vercel Deployment 2 Updated web to 0.5.0 * Test Vercel Deployment 3 Removed settings page for now upgraded Firebase downgraded Web * Test Vercel Deployment 4 Refactored asset names * Test Vercel Deployment 5 * Test Vercel Deployment 6 Removed requirement for .env * Test Vercel Deployment 7 Removed .en from pubspec.yaml --------- Co-authored-by: PrabirKalwani <[email protected]> Co-authored-by: vedantheda <[email protected]> * Feat: Add Meta Data and Favicon on Flutter Web (#30) * Updated Meta Data * Updated Meta Data + Changed Favicon --------- Co-authored-by: PrabirKalwani <[email protected]> Co-authored-by: vedantheda <[email protected]>
- Loading branch information
1 parent
52bce02
commit 5d42f9b
Showing
18 changed files
with
103 additions
and
53 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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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,18 @@ | ||
import 'package:envied/envied.dart'; | ||
|
||
part 'env.g.dart'; | ||
|
||
// @Envied(path: '.env') | ||
@Envied() | ||
abstract class Env { | ||
@EnviedField(varName: "FIREBASE_WEB", obfuscate: true) | ||
static final String firebaseWeb = _Env.firebaseWeb; | ||
@EnviedField(varName: "FIREBASE_ANDROID", obfuscate: true) | ||
static final String firebaseAndroid = _Env.firebaseAndroid; | ||
@EnviedField(varName: "FIREBASE_IOS", obfuscate: true) | ||
static final String firebaseIos = _Env.firebaseIos; | ||
@EnviedField(varName: "FIREBASE_MACOS", obfuscate: true) | ||
static final String firebaseMacos = _Env.firebaseMacos; | ||
@EnviedField(varName: "PALM_API_KEY", obfuscate: true) | ||
static final String palmApiKey= _Env.palmApiKey; | ||
} |
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
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
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