JuiSnackBar constructor
Implementation
JuiSnackBar(String text, {Key? key})
: super(
key: key,
backgroundColor: JuiColors.secondaryColor,
content: _JuiSnackbarContent(
text: text,
color: JuiColors.white,
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.vertical(
top: Radius.circular(JuiBreakpoints.b24),
),
),
);