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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
import 'package:flutter_ics_homescreen/core/utils/helpers.dart';
import 'package:flutter_ics_homescreen/export.dart';
class PlayerNavigation extends StatefulWidget {
const PlayerNavigation({super.key, required this.onPressed});
final Function onPressed;
@override
State<PlayerNavigation> createState() => _PlayerNavigationState();
}
class _PlayerNavigationState extends State<PlayerNavigation> {
List<String> navItems = ["My Media", "FM", "AM", "XM"];
String selectedNav = "My Media";
@override
Widget build(BuildContext context) {
return Row(
children: navItems
.map((e) => Expanded(
child: Container(
margin: const EdgeInsets.symmetric(horizontal: 2),
decoration: BoxDecoration(
gradient: LinearGradient(colors: [
selectedNav == e
? AGLDemoColors.neonBlueColor
: AGLDemoColors.buttonFillEnabledColor,
AGLDemoColors.gradientBackgroundDarkColor
], begin: Alignment.topCenter, end: Alignment.bottomCenter),
// color: selectedNav == e
// ? AGLDemoColors.neonBlueColor
// : AGLDemoColors.buttonFillEnabledColor,
),
child: Material(
color: Colors.transparent,
child: InkWell(
onTap: () {
setState(() {
selectedNav = e;
});
widget.onPressed(selectedNav);
},
child: Container(
padding: const EdgeInsets.symmetric(vertical: 7),
decoration: BoxDecoration(
border: Border(
left: selectedNav == e
? const BorderSide(color: Colors.white12)
: BorderSide.none,
right: selectedNav == e
? const BorderSide(color: Colors.white12)
: BorderSide.none,
top: BorderSide(
color: selectedNav == e
? Colors.white
: Colors.white24,
width: selectedNav == e ? 2 : 1))),
child: Text(
e,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 26,
shadows: [
selectedNav == e
? Helpers.dropShadowRegular
: Helpers.dropShadowBig
],
color: selectedNav == e
? Colors.white
: AGLDemoColors.periwinkleColor,
fontWeight: selectedNav == e
? FontWeight.w700
: FontWeight.w500),
),
),
),
),
)))
.toList());
}
}
|