import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:marquee/marquee.dart'; Widget NotifyWidget(String text, {required Color textColor, Color? bgColor,double? paddingLeft,double? paddingRight }) { return Container( height: 30, alignment: Alignment.center, color: bgColor ?? Colors.transparent, padding: EdgeInsets.only(left: paddingLeft ?? 10, right: paddingRight ?? 10, top: 5, bottom: 5), child: Row( children: [ Icon( Icons.volume_up_outlined, color: textColor, size: 15, ), SizedBox(width: 5,), Expanded( child: Marquee( text: text, style: TextStyle(fontSize: 12, color: textColor), )) ], ), ); }