You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
691 B
Dart
29 lines
691 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_custom_clippers/flutter_custom_clippers.dart';
|
|
import '../../../../res/app_colors.dart';
|
|
|
|
|
|
class ExpandedContainer extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ClipPath(
|
|
clipper: MultipleRoundedCurveClipper(),
|
|
child: Container(
|
|
height: 200,
|
|
width: double.infinity,
|
|
color: AppColors.colorPrimaryLight,
|
|
child: Column(
|
|
children: [
|
|
Text("data"),
|
|
Text("data"),
|
|
Text("data"),
|
|
Text("data"),
|
|
Text("data"),
|
|
Text("data"),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|