Home > 中央配置


Flutterで背景画像を中央に配置する方法

Containerウィジェットを使用する方法:Container( decoration: BoxDecoration( image: DecorationImage( image: AssetImage('assets/background_image.jpg'), fit: BoxFit.cover, ), ), child: Center( child: YourContentWidget(), ), )>>More