You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aku_new_community/lib/widget/views/application_box.dart

29 lines
735 B

import 'package:flutter/material.dart';
3 years ago
3 years ago
import 'package:aku_new_community/utils/headers.dart';
class ApplicationBox extends StatelessWidget {
3 years ago
final Widget? child;
3 years ago
3 years ago
ApplicationBox({Key? key, this.child}) : super(key: key);
@override
Widget build(BuildContext context) {
return VxBox(child: child)
// .margin(EdgeInsets.symmetric(horizontal: 32.w, vertical: 24.w))
.padding(EdgeInsets.all(24.w))
.color(Colors.white)
.withRounded(value: 8.w)
// .withShadow([
// BoxShadow(
// color: Colors.grey.withOpacity(0.2),
// offset: Offset(1.1, 1.1),
// blurRadius: 10.0,
// )
// ])
.make()
.centered();
}
}