Skip to content

Push to flutterflow not working #5997

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
1 of 2 tasks
khushalzoxima opened this issue Jun 13, 2025 · 2 comments
Closed
1 of 2 tasks

Push to flutterflow not working #5997

khushalzoxima opened this issue Jun 13, 2025 · 2 comments
Assignees
Labels
status: not a bug This is not a bug.

Comments

@khushalzoxima
Copy link

Can we access your project?

  • 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

@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

  • The steps to reproduce above start from a blank project.

Bug Report Code (Required)

ITEez8jfz49OtbxZ+ofTKMZFhQMwJ0QlUIInj+0bWRMhfb7rEIotOs/BZVVLYtegfQt+Omf/gXw0/s7nk/DLLsJeNQqqRqo9+K5XQRfxcE+7R4jRDs6weXFRPNxUf36Z35+NrCVSIrdqR3w+12D3BvCNG3qCf9qOYwx5e6fDbOY=

Visual documentation

Image

Environment

- 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

@khushalzoxima khushalzoxima added the status: needs triage A potential issue that has not been confirmed as a bug. label Jun 13, 2025
@Alezanello Alezanello self-assigned this Jun 13, 2025
Copy link
Collaborator

Hello!

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.

https://docs.flutterflow.io/concepts/custom-code/vscode-extension/#editing-custom-code

@Alezanello Alezanello removed the status: needs triage A potential issue that has not been confirmed as a bug. label Jun 13, 2025
@Alezanello Alezanello added the status: not a bug This is not a bug. label Jun 13, 2025 — with Linear
Copy link
Collaborator

Closing this issue since we haven't heard back from you. If you are still facing the problem please submit a new issue. Thank you!

@Alezanello Alezanello closed this as not planned Won't fix, can't repro, duplicate, stale Jun 16, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: not a bug This is not a bug.
Projects
None yet
Development

No branches or pull requests

2 participants