From 355527091ee485cce29240fa89a49fd5351447a0 Mon Sep 17 00:00:00 2001 From: Niklas Date: Fri, 1 Nov 2024 21:56:12 +0100 Subject: [PATCH] =?UTF-8?q?Habe=20den=20Namen=20ge=C3=A4ndert=20und=20ein?= =?UTF-8?q?=20Expandable=20gemacht,=20anscheinend=20stimmt=20was=20nciht?= =?UTF-8?q?=20mit=20der=20Gr=C3=B6=C3=9Fe=20des=20Footers.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/src/main/AndroidManifest.xml | 2 +- ios/Runner/Info.plist | 4 +- lib/screens/subheader_Datepicker.dart | 432 +++++++++++------------ 3 files changed, 219 insertions(+), 219 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index f5201da..be52c18 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,6 +1,6 @@ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleDisplayName - Learn Project + Montomo CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier @@ -13,7 +13,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - learn_project + Montomo CFBundlePackageType APPL CFBundleShortVersionString diff --git a/lib/screens/subheader_Datepicker.dart b/lib/screens/subheader_Datepicker.dart index bc5026e..ec68f00 100644 --- a/lib/screens/subheader_Datepicker.dart +++ b/lib/screens/subheader_Datepicker.dart @@ -1673,227 +1673,227 @@ class LostEvents extends StatelessWidget { class Footer extends StatelessWidget { @override Widget build(BuildContext context) { - return Container( - width: double.infinity, - //height: 90, - padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 5), - clipBehavior: Clip.antiAlias, - decoration: BoxDecoration( - color: Color(0xFFF2F2F2), - border: Border( - left: BorderSide(color: Color(0xFF868686)), - top: BorderSide(width: 1, color: Color(0xFF868686)), - right: BorderSide(color: Color(0xFF868686)), - bottom: BorderSide(color: Color(0xFF868686)), - ), + return Expanded( + child: Container( + width: double.infinity, + //height: 90, + padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 5), + clipBehavior: Clip.antiAlias, + decoration: BoxDecoration( + color: Color(0xFFF2F2F2), + border: Border( + left: BorderSide(color: Color(0xFF868686)), + top: BorderSide(width: 1, color: Color(0xFF868686)), + right: BorderSide(color: Color(0xFF868686)), + bottom: BorderSide(color: Color(0xFF868686)), ), - child: Expanded( - child: Column( + ), + child: Column( + children: [ + Row( + mainAxisSize: MainAxisSize.max, + mainAxisAlignment: MainAxisAlignment.start, + crossAxisAlignment: CrossAxisAlignment.center, children: [ - Row( - mainAxisSize: MainAxisSize.max, - mainAxisAlignment: MainAxisAlignment.start, - crossAxisAlignment: CrossAxisAlignment.center, - children: [ - SizedBox( - height: 30, - //width: 63, - child: IconButton( - icon: Image.asset('assets/images/logo.png'), - onPressed: () { - // Open drawer or perform action - }, - ), - ), - const SizedBox(width: 10), - Text( - '© 2024 Alle Rechte vorbehalten', - style: TextStyle( - color: Colors.black, - fontSize: 8, - fontFamily: 'Inter', - fontWeight: FontWeight.w400, - height: 0, - ), - ), - const SizedBox(width: 40), - SizedBox( - height: 20, - width: 20, - child: IconButton( - icon: FaIcon(FontAwesomeIcons.instagram, size: 20), - onPressed: () { - // Füge hier die YouTube-Aktion hinzu - }, - padding: EdgeInsets - .zero, // Entfernt das Padding des IconButton - constraints: - BoxConstraints(), // Entfernt die Standardbeschränkungen - )), - const SizedBox(width: 10), - SizedBox( - height: 20, - width: 20, - child: IconButton( - icon: FaIcon(FontAwesomeIcons.tiktok, size: 20), - onPressed: () { - // Füge hier die YouTube-Aktion hinzu - }, - padding: EdgeInsets - .zero, // Entfernt das Padding des IconButton - constraints: - BoxConstraints(), // Entfernt die Standardbeschränkungen - )), - const SizedBox(width: 10), - SizedBox( - height: 20, - width: 25, - child: IconButton( - icon: FaIcon(FontAwesomeIcons.youtube, size: 20), - onPressed: () { - // Füge hier die YouTube-Aktion hinzu - }, - padding: EdgeInsets - .zero, // Entfernt das Padding des IconButton - constraints: - BoxConstraints(), // Entfernt die Standardbeschränkungen - )), - const SizedBox(width: 10), - SizedBox( - height: 20, - width: 20, - child: IconButton( - icon: FaIcon(FontAwesomeIcons.facebook, size: 20), - onPressed: () { - // Füge hier die YouTube-Aktion hinzu - }, - padding: EdgeInsets - .zero, // Entfernt das Padding des IconButton - constraints: - BoxConstraints(), // Entfernt die Standardbeschränkungen - )), - const SizedBox(width: 10), - ], + SizedBox( + height: 30, + //width: 63, + child: IconButton( + icon: Image.asset('assets/images/logo.png'), + onPressed: () { + // Open drawer or perform action + }, + ), ), - Container(height: 10), - Row( - crossAxisAlignment: CrossAxisAlignment.center, - mainAxisSize: MainAxisSize.max, - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Text( - ' About us', - style: TextStyle( - color: Colors.black, - fontSize: 12, - fontFamily: 'Inter', - fontWeight: FontWeight.w400, - height: 0, - ), - ), - const SizedBox(width: 10), - Container( - width: 3, - height: 3, - decoration: ShapeDecoration( - color: Colors.black, // Schwarze Füllfarbe - shape: OvalBorder(side: BorderSide(width: 1)), - ), - ), - const SizedBox(width: 10), - Text( - 'Impressum', - style: TextStyle( - color: Colors.black, - fontSize: 12, - fontFamily: 'Inter', - fontWeight: FontWeight.w400, - height: 0, - ), - ), - const SizedBox(width: 10), - Container( - width: 3, - height: 3, - decoration: ShapeDecoration( - color: Colors.black, // Schwarze Füllfarbe - shape: OvalBorder(side: BorderSide(width: 1)), - ), - ), - const SizedBox(width: 10), - Text( - 'Kontakt', - style: TextStyle( - color: Colors.black, - fontSize: 12, - fontFamily: 'Inter', - fontWeight: FontWeight.w400, - height: 0, - ), - ), - const SizedBox(width: 10), - Container( - width: 3, - height: 3, - decoration: ShapeDecoration( - color: Colors.black, // Schwarze Füllfarbe - shape: OvalBorder(side: BorderSide(width: 1)), - ), - ), - const SizedBox(width: 10), - Text( - 'Help Service', - style: TextStyle( - color: Colors.black, - fontSize: 12, - fontFamily: 'Inter', - fontWeight: FontWeight.w400, - height: 0, - ), - ), - ], + const SizedBox(width: 10), + Text( + '© 2024 Alle Rechte vorbehalten', + style: TextStyle( + color: Colors.black, + fontSize: 8, + fontFamily: 'Inter', + fontWeight: FontWeight.w400, + height: 0, + ), ), - Container(height: 10), - Row( - crossAxisAlignment: CrossAxisAlignment.center, - mainAxisSize: MainAxisSize.max, - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Text( - 'Terms and conditions ', - style: TextStyle( - color: Colors.black, - fontSize: 12, - fontFamily: 'Inter', - fontWeight: FontWeight.w400, - height: 0, - ), - ), - const SizedBox(width: 20), - Container( - width: 3, - height: 3, - decoration: ShapeDecoration( - color: Colors.black, // Schwarze Füllfarbe - shape: OvalBorder(side: BorderSide(width: 1)), - ), - ), - const SizedBox(width: 20), - Text( - 'sponsered by: In4Event', - style: TextStyle( - color: Colors.black, - fontSize: 12, - fontFamily: 'Inter', - fontWeight: FontWeight.w400, - height: 0, - ), - ), - ], - ), - Container(height: 20), + const SizedBox(width: 40), + SizedBox( + height: 20, + width: 20, + child: IconButton( + icon: FaIcon(FontAwesomeIcons.instagram, size: 20), + onPressed: () { + // Füge hier die YouTube-Aktion hinzu + }, + padding: + EdgeInsets.zero, // Entfernt das Padding des IconButton + constraints: + BoxConstraints(), // Entfernt die Standardbeschränkungen + )), + const SizedBox(width: 10), + SizedBox( + height: 20, + width: 20, + child: IconButton( + icon: FaIcon(FontAwesomeIcons.tiktok, size: 20), + onPressed: () { + // Füge hier die YouTube-Aktion hinzu + }, + padding: + EdgeInsets.zero, // Entfernt das Padding des IconButton + constraints: + BoxConstraints(), // Entfernt die Standardbeschränkungen + )), + const SizedBox(width: 10), + SizedBox( + height: 20, + width: 25, + child: IconButton( + icon: FaIcon(FontAwesomeIcons.youtube, size: 20), + onPressed: () { + // Füge hier die YouTube-Aktion hinzu + }, + padding: + EdgeInsets.zero, // Entfernt das Padding des IconButton + constraints: + BoxConstraints(), // Entfernt die Standardbeschränkungen + )), + const SizedBox(width: 10), + SizedBox( + height: 20, + width: 20, + child: IconButton( + icon: FaIcon(FontAwesomeIcons.facebook, size: 20), + onPressed: () { + // Füge hier die YouTube-Aktion hinzu + }, + padding: + EdgeInsets.zero, // Entfernt das Padding des IconButton + constraints: + BoxConstraints(), // Entfernt die Standardbeschränkungen + )), + const SizedBox(width: 10), ], ), - )); + Container(height: 10), + Row( + crossAxisAlignment: CrossAxisAlignment.center, + mainAxisSize: MainAxisSize.max, + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text( + ' About us', + style: TextStyle( + color: Colors.black, + fontSize: 12, + fontFamily: 'Inter', + fontWeight: FontWeight.w400, + height: 0, + ), + ), + const SizedBox(width: 10), + Container( + width: 3, + height: 3, + decoration: ShapeDecoration( + color: Colors.black, // Schwarze Füllfarbe + shape: OvalBorder(side: BorderSide(width: 1)), + ), + ), + const SizedBox(width: 10), + Text( + 'Impressum', + style: TextStyle( + color: Colors.black, + fontSize: 12, + fontFamily: 'Inter', + fontWeight: FontWeight.w400, + height: 0, + ), + ), + const SizedBox(width: 10), + Container( + width: 3, + height: 3, + decoration: ShapeDecoration( + color: Colors.black, // Schwarze Füllfarbe + shape: OvalBorder(side: BorderSide(width: 1)), + ), + ), + const SizedBox(width: 10), + Text( + 'Kontakt', + style: TextStyle( + color: Colors.black, + fontSize: 12, + fontFamily: 'Inter', + fontWeight: FontWeight.w400, + height: 0, + ), + ), + const SizedBox(width: 10), + Container( + width: 3, + height: 3, + decoration: ShapeDecoration( + color: Colors.black, // Schwarze Füllfarbe + shape: OvalBorder(side: BorderSide(width: 1)), + ), + ), + const SizedBox(width: 10), + Text( + 'Help Service', + style: TextStyle( + color: Colors.black, + fontSize: 12, + fontFamily: 'Inter', + fontWeight: FontWeight.w400, + height: 0, + ), + ), + ], + ), + Container(height: 10), + Row( + crossAxisAlignment: CrossAxisAlignment.center, + mainAxisSize: MainAxisSize.max, + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text( + 'Terms and conditions ', + style: TextStyle( + color: Colors.black, + fontSize: 12, + fontFamily: 'Inter', + fontWeight: FontWeight.w400, + height: 0, + ), + ), + const SizedBox(width: 20), + Container( + width: 3, + height: 3, + decoration: ShapeDecoration( + color: Colors.black, // Schwarze Füllfarbe + shape: OvalBorder(side: BorderSide(width: 1)), + ), + ), + const SizedBox(width: 20), + Text( + 'sponsered by: In4Event', + style: TextStyle( + color: Colors.black, + fontSize: 12, + fontFamily: 'Inter', + fontWeight: FontWeight.w400, + height: 0, + ), + ), + ], + ), + Container(height: 20), + ], + ), + )); } }