showToastBar function

void showToastBar(
  1. dynamic context, {
  2. required String message,
  3. required String title,
})

Implementation

void showToastBar(context, {required String message, required String title}) {
  BotToast.showAttachedWidget(
      attachedBuilder: (_) {
        return Material(
          color: Colors.white,
          child: InkWell(
            onTap: () {},
            child: Container(
              decoration: const BoxDecoration(
                  color: Colors.white,
                  borderRadius: BorderRadius.only(
                      bottomLeft: Radius.circular(8),
                      bottomRight: Radius.circular(8)),
                  boxShadow: [
                    BoxShadow(
                        offset: (Offset(0, 3)),
                        blurRadius: 12,
                        color: Colors.white10)
                  ]),
              child: ConstrainedBox(
                constraints: const BoxConstraints(minHeight: 76, maxHeight: 95),
                child: Center(
                  child: Padding(
                    padding: const EdgeInsets.only(left: 15, top: 0),
                    child: Row(
                      crossAxisAlignment: CrossAxisAlignment.start,
                      children: [
                        Center(
                            child: Image.asset(
                          "assets/icon/icon.png",
                          width: 35,
                        )),
                        const SizedBox(width: 20),
                        Column(
                          crossAxisAlignment: CrossAxisAlignment.start,
                          mainAxisAlignment: MainAxisAlignment.center,
                          children: [
                            METext(
                              letterSpacing: 0.2,
                              height: 1.5,
                              text: title,
                              fontSize: 14,
                              fontWeight: FontWeight.w600,
                              color: secondaryColor,
                            ),
                            const SizedBox(height: 5),
                          ],
                        ),
                      ],
                    ),
                  ),
                ),
              ),
            ),
          ),
        );
      },
      duration: const Duration(seconds: 4),
      target: const Offset(520, 520));
}