FContainer constructor
const
FContainer({
- Key? key,
- double? width,
- double? height,
- Color? color,
- Widget? child,
- Border? border,
- double borderRadius = 5.0,
- EdgeInsetsGeometry padding = const EdgeInsets.all(5.0),
- EdgeInsetsGeometry? margin,
- GestureTapCallback? onTap,
Implementation
const FContainer(
{Key? key,
this.width,
this.height,
this.color,
this.child,
this.border,
this.borderRadius = 5.0,
this.padding = const EdgeInsets.all(5.0),
this.margin,
this.onTap})
: super(key: key);