You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I give permission for members of the FlutterFlow team to access and test my project for the sole purpose of investigating this issue.
Current Behavior
when I locally push code from my vscode to my flutterflow it shows that pushed to flutter flow but there is no update when I check the code from my flutterflow's 'view code'
Expected Behavior
when I push my code the functionality is shown cased as it should happen if the code would have worked properly , and is also visible in view code section of flutterflow website
Steps to Reproduce
replicate 'splash' screen
go to splash screen page in vscode and change
- FlutterFlow version: v6.0.15
- Platform: mobile
- Browser name and version: Brave 1.79.123 (Official Build) (64-bit)
Chromium: 137.0.7151.104
- Operating system and version affected: windows 11
Additional Information
I want to be able to make changes in the code and in flutterflow as well while pushing and pull accordingly
The text was updated successfully, but these errors were encountered:
According to FlutterFlow’s documentation, only certain parts of the codebase can be safely edited in VS Code and pushed back to FlutterFlow. These include:
Custom Actions: located in lib/custom_code/actions
Custom Widgets: located in lib/custom_code/widgets
Custom Functions: in lib/flutter_flow/custom_functions.dart
Package Dependencies: in pubspec.yaml
Any changes made outside of these areas might not be recognized or could be overwritten by FlutterFlow.
Can we access your project?
Current Behavior
when I locally push code from my vscode to my flutterflow it shows that pushed to flutter flow but there is no update when I check the code from my flutterflow's 'view code'
Expected Behavior
when I push my code the functionality is shown cased as it should happen if the code would have worked properly , and is also visible in view code section of flutterflow website
Steps to Reproduce
replicate 'splash' screen
go to splash screen page in vscode and change
@OverRide
void initState() {
super.initState();
_model = createModel(context, () => SplashModel());
}
to
@OverRide
void initState() {
super.initState();
_model = createModel(context, () => SplashModel());
// Add navigation logic after 3 seconds
Future.delayed(Duration(seconds: 3), () {
if (authManager.currentUser != null && authManager.currentUser!.loggedIn) {
GoRouter.of(context).pushReplacement('/home');
} else {
GoRouter.of(context).pushReplacement('/onboarding');
}
});
}
push code to flutterflow
check in viewcode in flutterflow website
Reproducible from Blank
Bug Report Code (Required)
ITEez8jfz49OtbxZ+ofTKMZFhQMwJ0QlUIInj+0bWRMhfb7rEIotOs/BZVVLYtegfQt+Omf/gXw0/s7nk/DLLsJeNQqqRqo9+K5XQRfxcE+7R4jRDs6weXFRPNxUf36Z35+NrCVSIrdqR3w+12D3BvCNG3qCf9qOYwx5e6fDbOY=
Visual documentation
Environment
Additional Information
I want to be able to make changes in the code and in flutterflow as well while pushing and pull accordingly
The text was updated successfully, but these errors were encountered: