events missing added

but not in frontend
This commit is contained in:
Niklas 2024-10-27 21:33:59 +01:00
parent 585df15d2e
commit b8764e5e01
1 changed files with 113 additions and 0 deletions

View File

@ -1540,4 +1540,117 @@ class Event_Card extends StatelessWidget {
],
);
}
}
class LostEvents extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Column(
children: [
Container(
width: 350,
height: 148,
child: Stack(
children: [
Positioned(
left: 0,
top: 0,
child: Container(
width: 350,
height: 148,
decoration: ShapeDecoration(
color: Colors.white,
shape: RoundedRectangleBorder(
side: BorderSide(width: 2),
borderRadius: BorderRadius.circular(8),
),
shadows: [
BoxShadow(
color: Color(0xFF000000),
blurRadius: 0,
offset: Offset(0, 10),
spreadRadius: 0,
)
],
),
),
),
Positioned(
left: 18,
top: 15,
child: Text(
'Ein Event fehlt euch hier?',
style: TextStyle(
color: Color(0xFF0A0A0A),
fontSize: 18,
fontFamily: 'Inter',
fontWeight: FontWeight.w800,
height: 0,
),
),
),
Positioned(
left: 19,
top: 44,
child: SizedBox(
width: 317,
child: Text.rich(
TextSpan(
children: [
TextSpan(
text: 'Sendet uns ein Foto vom Event ',
style: TextStyle(
color: Color(0xFF0A0A0A),
fontSize: 16,
fontFamily: 'Inter',
fontWeight: FontWeight.w400,
height: 0,
),
),
TextSpan(
text: 'oder',
style: TextStyle(
color: Color(0xFF0A0A0A),
fontSize: 16,
fontFamily: 'Inter',
fontWeight: FontWeight.w700,
height: 0,
),
),
TextSpan(
text: ' werdet Host und stellt eure Events bei uns rein. ',
style: TextStyle(
color: Color(0xFF0A0A0A),
fontSize: 16,
fontFamily: 'Inter',
fontWeight: FontWeight.w400,
height: 0,
),
),
],
),
),
),
),
Positioned(
left: 247,
top: 116,
child: Text(
'Infos hier',
style: TextStyle(
color: Color(0xFF0A0A0A),
fontSize: 18,
fontFamily: 'Inter',
fontWeight: FontWeight.w800,
height: 0.07,
),
),
),
],
),
),
],
);
}
}