我想在颤动中制作这样的屏幕:
任何人都可以建议我如何在这样的颤动和设计中制作这样的容器,在此先感谢。
您可以使用ClipPath类为您的容器提供自定义形状。
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: ClipPath(
child: Container(color: Colors.red),
clipper: MyCustomClipper(),
),
),
));
}
}
class MyCustomClipper extends CustomClipper<Path> {
@override
Path getClip(Size size) {
Path path = Path()
..lineTo(size.width, 0)
..lineTo(size.width, size.height/2)
..lineTo(size.width/2, size.height)
..lineTo(0, size.height)
..close();
return path;
}
@override
bool shouldReclip(CustomClipper<Path> oldClipper) => false;
}