// SizedBox( // width: 170, // child: GestureDetector( // onTap: () async { // Navigator.push( // context, // MaterialPageRoute(builder: (context) => const SB()), // ); // }, // child: Card( // shape: RoundedRectangleBorder( // borderRadius: BorderRadius.circular(10), // ), // child: const Padding( // padding: EdgeInsets.all(10), // child: ListTile( // title: Padding( // padding: EdgeInsets.fromLTRB(0, 0, 0, 10), // child: Icon( // MdiIcons.libraryShelves, // color: Palette.accent, // size: 48, // ), // ), // subtitle: Center( // child: Padding( // padding: EdgeInsets.fromLTRB(0, 10, 0, 0), // child: Text( // 'Schulbibliothek', // ), // ), // ), // ), // )), // ), // ), // SizedBox( // width: 170, // child: GestureDetector( // onTap: () async { // Navigator.push( // context, // MaterialPageRoute(builder: (context) => const SC()), // ); // }, // child: Card( // shape: RoundedRectangleBorder( // borderRadius: BorderRadius.circular(10), // ), // child: const Padding( // padding: EdgeInsets.all(10), // child: ListTile( // title: Padding( // padding: EdgeInsets.fromLTRB(0, 0, 0, 10), // child: Icon( // MdiIcons.laptop, // color: Palette.accent, // size: 48, // ), // ), // subtitle: Center( // child: Padding( // padding: EdgeInsets.fromLTRB(0, 10, 0, 0), // child: Text( // 'Schulcomputer', // ), // ), // ), // ), // )), // ), // ), // SizedBox( // width: 170, // child: GestureDetector( // onTap: () async { // Navigator.push( // context, // MaterialPageRoute( // builder: (context) => const RoomOverview()), // ); // }, // child: Card( // shape: RoundedRectangleBorder( // borderRadius: BorderRadius.circular(10), // ), // child: const Padding( // padding: EdgeInsets.all(10), // child: ListTile( // title: Padding( // padding: EdgeInsets.fromLTRB(0, 0, 0, 10), // child: Icon( // MdiIcons.door, // color: Palette.accent, // size: 48, // ), // ), // subtitle: Center( // child: Padding( // padding: EdgeInsets.fromLTRB(0, 10, 0, 0), // child: Text( // 'Raumübersicht', // ), // ), // ), // ), // )), // ), // ), // ListTile( // leading: // const Icon(MdiIcons.timetable, color: Colors.orangeAccent), // trailing: const Icon(Icons.arrow_forward_ios, size: 16), // title: const Text("Plan"), // subtitle: const Text("Kurse/Fächer, Farben & mehr"), // onTap: () { // Navigator.push( // context, // MaterialPageRoute(builder: (context) => const PlanSettings()), // ); // }, // ), // ListTile( // leading: const Icon(Icons.color_lens_outlined, // color: Colors.pinkAccent), // trailing: const Icon(Icons.arrow_forward_ios, size: 16), // title: const Text("Aussehen"), // subtitle: const Text("Widgets, Design & mehr"), // onTap: () { // Navigator.push( // context, // MaterialPageRoute( // builder: (context) => const AppearanceSettings()), // ); // }, // ), // ListTile( // leading: const Icon(MdiIcons.server, color: Colors.lightGreen), // trailing: const Icon(Icons.arrow_forward_ios, size: 16), // title: const Text("Dienste"), // subtitle: const Text("Konten, Plattformen & mehr"), // onTap: () { // Navigator.push( // context, // MaterialPageRoute( // builder: (context) => const ServiceSettings()), // ); // }, // ), // class PlanSettings extends StatelessWidget { // const PlanSettings({Key? key}) : super(key: key); // @override // Widget build(BuildContext context) { // return Scaffold( // appBar: AppBar( // title: const Text("Plan"), // centerTitle: true, // ), // body: ListView( // padding: const EdgeInsets.fromLTRB(5, 5, 5, 5), // children: [ // ListTile( // leading: const Icon(Icons.list_alt_outlined, color: Colors.red), // trailing: const Icon(Icons.arrow_forward_ios, size: 16), // title: const Text("Kurse"), // subtitle: const Text("Konfiguration der Kurse"), // onTap: () { // Navigator.push( // context, // MaterialPageRoute( // builder: (context) => const WhitelistSettings()), // ); // }, // ), // ListTile( // leading: // const Icon(Icons.color_lens_outlined, color: Colors.teal), // trailing: const Icon(Icons.arrow_forward_ios, size: 16), // title: const Text("Farben"), // subtitle: // const Text("Konfiguration der Farben für die Plankacheln"), // onTap: () { // Navigator.push( // context, // MaterialPageRoute( // builder: (context) => const PlanColorSettings()), // ); // }, // ), // ], // )); // } // }