This commit is contained in:
Leon Bösche
2025-12-17 00:14:43 +01:00
parent 3bd985647c
commit 2d6cf4e8bc

View File

@@ -126,11 +126,11 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
), ),
), ),
// Top edge subtle highlight // Top edge subtle highlight
IgnorePointer( Positioned(
child: Positioned(
top: 0, top: 0,
left: 0, left: 0,
right: 0, right: 0,
child: IgnorePointer(
child: Container( child: Container(
height: 60, height: 60,
decoration: BoxDecoration( decoration: BoxDecoration(
@@ -147,11 +147,11 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
), ),
), ),
// Left edge subtle side lighting // Left edge subtle side lighting
IgnorePointer( Positioned(
child: Positioned(
left: 0, left: 0,
top: 0, top: 0,
bottom: 0, bottom: 0,
child: IgnorePointer(
child: Container( child: Container(
width: 40, width: 40,
decoration: BoxDecoration( decoration: BoxDecoration(
@@ -170,10 +170,10 @@ class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
), ),
), ),
// Diagonal shimmer overlay // Diagonal shimmer overlay
IgnorePointer( Positioned(
child: Positioned( top: 0,
top: -100, left: 0,
right: -100, child: IgnorePointer(
child: Transform.rotate( child: Transform.rotate(
angle: 0.785, angle: 0.785,
child: Container( child: Container(