From ebd394a964f12283ee53fca0fc374661226d048a Mon Sep 17 00:00:00 2001 From: Isira-Udantha Date: Fri, 26 Jan 2024 03:22:41 +0530 Subject: [PATCH] Update User Guide --- .../lib/screens/user_guide.dart | 44 +++++++++++++++---- 1 file changed, 36 insertions(+), 8 deletions(-) diff --git a/code/smartchessboard/lib/screens/user_guide.dart b/code/smartchessboard/lib/screens/user_guide.dart index 4d22d41..e43bd5a 100644 --- a/code/smartchessboard/lib/screens/user_guide.dart +++ b/code/smartchessboard/lib/screens/user_guide.dart @@ -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( @@ -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, + ), ), ], ),