-
Notifications
You must be signed in to change notification settings - Fork 8
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
not handle correctly on iphone xs with ios 18 #15
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ScreenRecording_09-28-2024.22-57-50_1.mov
code:
SoftEdgeBlur(
edges: [
EdgeBlur(
size: 300,
tintColor: Colors.transparent, // Edge Size
sigma: 30.0,
controlPoints: [
ControlPoint(position: 0.5, type: ControlPointType.visible),
ControlPoint(position: 1.0, type: ControlPointType.transparent),
],
type: EdgeType.topEdge,
),
],
child: ListView.builder(itemBuilder: (context, index) {
return Center(
child: Container(
width: 200,
height: 50,
color: Colors.blue,
child: Text(
"$index",
style: TextStyle(fontSize: 20),
),
),
);
})
The text was updated successfully, but these errors were encountered: