1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| 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),
| ))
| ],
| ),
| );
| }
|
|