JuiSnackBar constructor

JuiSnackBar(
  1. String text, {
  2. Key? key,
})

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),
          ),
        ),
      );