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
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.22.0, on macOS 14.5 23F79 darwin-arm64, locale en-IN)
[✓] Android toolchain - develop for Android devices (Android SDK version 33.0.2)
[!] Xcode - develop for iOS and macOS (Xcode 14.3)
! Flutter recommends a minimum Xcode version of 15.
Download the latest version or update via the Mac App Store.
[✓] Chrome - develop for the web
[✓] Android Studio (version 2022.3)
[✓] VS Code (version 1.84.2)
[✓] Connected device (4 available)
[✓] Network resources
! Doctor found issues in 1 category.
What platforms are you seeing the problem on?
Android and IOS
What happened?
In our app, we are using the plugin version v4.2.8 where we are currently using the pushDynamicScreen method to push the code in new version I'm not able to see alternative method to achieve the same.
Steps to reproduce
Go to '...'
Click on '....'
Scroll down to '....'
See error
Code to reproduce the problem
pushDynamicScreen(
context,
withNavBar:true,
screen:Screen1()
);
Thisis the code to push a new dialog.
and inScreen1 we are using the below code.
import'package:flutter/material.dart';
classScreen1extendsModalRoute<void> {
Screen1({Key? key} );
Widget_buildOverlayContent(BuildContext context) {
returnDialog(
shape:RoundedRectangleBorder(
borderRadius:BorderRadius.circular(10.0),
),
elevation:0,
backgroundColor:Colors.white,
child:Container()
);
}
@overrideDurationget transitionDuration =>Duration(milliseconds:500);
@overrideboolget opaque =>false;
@overrideboolget barrierDismissible =>false;
@overrideColorget barrierColor =>Colors.black.withOpacity(0.5);
@overrideString?get barrierLabel =>null;
@overrideboolget maintainState =>true;
@overrideWidgetbuildPage(BuildContext context, Animation<double> animation, Animation<double> secondaryAnimation) {
// This makes sure that text and other content follows the material stylereturnSafeArea(
child:_buildOverlayContent(context),
);
}
}
Relevant log output
No response
Screenshots
No response
The text was updated successfully, but these errors were encountered:
Version
5.2.3
Flutter Doctor Output
What platforms are you seeing the problem on?
Android and IOS
What happened?
In our app, we are using the plugin version v4.2.8 where we are currently using the pushDynamicScreen method to push the code in new version I'm not able to see alternative method to achieve the same.
Steps to reproduce
Code to reproduce the problem
Relevant log output
No response
Screenshots
No response
The text was updated successfully, but these errors were encountered: