Bild als Background anbinden
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | Container( decoration: BoxDecoration( image: DecorationImage( image: AssetImage('assets/background_image.jpg'), // Pfad zu Ihrem Bild fit: BoxFit.cover, // Anpassen, um den Bildschirm zu füllen ), ), child: // Ihr weiterer Inhalt hier Center( child: Text('Ihr Inhalt hier', style: TextStyle(color: Colors.white), ), ), ), |