This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class MyBookingsScreen extends StatelessWidget { | |
| const MyBookingsScreen({super.key}); | |
| static const Color bg = Color(0xFF0A1A12); | |
| static const Color card = Color(0xFF24252C); | |
| static const Color primary = Color(0xFF1AD55F); | |
| static const Color muted = Color(0xFFA6ADAA); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class BookingSuccessScreen extends StatelessWidget { | |
| const BookingSuccessScreen({super.key}); | |
| static const Color bg = Color(0xFF0A1A12); | |
| static const Color accent = Color(0xFF1AD55F); | |
| static const Color card = Color(0xFF24252C); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(const SmartSportApp()); | |
| } | |
| class SmartSportApp extends StatelessWidget { | |
| const SmartSportApp({super.key}); | |
| @override |