Skip to content

Commit

Permalink
Update User Guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Isira-Udantha committed Jan 25, 2024
1 parent ffcee38 commit ebd394a
Showing 1 changed file with 36 additions and 8 deletions.
44 changes: 36 additions & 8 deletions code/smartchessboard/lib/screens/user_guide.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class UserGuide extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("User Guide"),
title: const Text("Chess Game User Guide"),
backgroundColor: const Color.fromARGB(255, 170, 143, 217), // Thematic color
),
body: Padding(
Expand All @@ -27,19 +27,47 @@ class UserGuide extends StatelessWidget {
const SizedBox(height: 16),
UserGuideSection(
title: 'Overview',
content: 'This is a new revolution in world chess game',
content: 'Congratulations on choosing our chess app, where the timeless game of strategy meets cutting-edge technology. We\'ve taken chess to the next level by connecting it to a real chessboard through Bluetooth, providing you with a seamless and immersive experience. To make the most out of your chess journey, we\'ve created this user guide to help you navigate through the features and enjoy every move on and off the board.',
),
UserGuideSection(
title: 'Making Moves',
content: 'Tap on a chess piece and then tap on the destination square.',
title: 'Getting Started',
content: 'Connecting your real chessboard via Bluetooth\nSetting up the app for the first time\nOverview of the app interface',
),
UserGuideSection(
title: 'Customizing Settings',
content: 'Personalize your chessboard appearance and game preferences.',
title: 'Basic Gameplay',
content: 'Making moves on the virtual board\nSyncing moves with the physical chessboard\nUnderstanding feedback and notifications',
),
UserGuideSection(
title: 'Enjoy the Game!',
content: 'Connect with friends, play chess, and have fun!',
title: 'Bluetooth Connectivity',
content: 'Troubleshooting connection issues\nReconnecting your chessboard\nTips for optimal Bluetooth performance',
),
UserGuideSection(
title: 'App Features',
content: 'Exploring different game modes\nCustomizing the chessboard appearance\nAccessing game history and saved games',
),
UserGuideSection(
title: 'In-Game Assistance',
content: 'Utilizing hints and analysis tools\nAdjusting difficulty levels\nResuming interrupted games',
),
UserGuideSection(
title: 'Flutter App Integration',
content: 'Navigating through the app\'s various screens\nAccessing additional resources and settings\nProviding feedback and support',
),
UserGuideSection(
title: 'Chessboard Maintenance',
content: 'Cleaning and caring for your real chessboard\nBattery management for Bluetooth connectivity\nStorage and travel tips',
),
UserGuideSection(
title: 'Frequently Asked Questions',
content: 'Answers to common queries\nTroubleshooting tips\nContacting our support team',
),
const SizedBox(height: 16),
Text(
'We\'re thrilled to have you on board, ready to explore the world of chess with our innovative app. Whether you\'re a seasoned player or just starting, this guide is designed to enhance your experience and make every move on the chessboard a memorable one. Happy playing!\n\nFor additional assistance or feedback, visit our website or contact our support team.',
style: TextStyle(
fontSize: 16,
color: Colors.black,
),
),
],
),
Expand Down

0 comments on commit ebd394a

Please sign in to comment.