2025-08-02 03:04:20 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2025-08-02 03:42:56 +02:00
|
|
|
class VotingPage extends StatelessWidget {
|
|
|
|
const VotingPage({super.key});
|
2025-08-02 03:04:20 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2025-08-02 03:42:56 +02:00
|
|
|
return Container(
|
|
|
|
color: const Color(0xFF121212),
|
|
|
|
child: const Center(
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Icon(Icons.how_to_vote, size: 100, color: Color(0xFF6366F1)),
|
|
|
|
SizedBox(height: 20),
|
|
|
|
Text(
|
|
|
|
'Voting',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 24,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color: Colors.white,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
SizedBox(height: 10),
|
|
|
|
Text(
|
|
|
|
'Vote for the next song',
|
|
|
|
style: TextStyle(color: Colors.grey),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2025-08-02 03:04:20 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|