-
Notifications
You must be signed in to change notification settings - Fork 28
Description
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
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