Я хотел бы установить полноэкранное фоновое изображение в контейнер Scaffold, но не знаете как? Вот мой код:
@override
Widget build(BuildContext context) {
_deviceHeight = MediaQuery.of(context).size.height;
_deviceWidth = MediaQuery.of(context).size.width;
return Scaffold(
backgroundColor: Theme.of(context).hintColor,
appBar: AppBar(
backgroundColor: Theme.of(context).accentColor,
title: Text(this.widget._receiverName),
),
body: ChangeNotifierProvider<AuthProvider>.value(
value: AuthProvider.instance,
child: _conversationPageUI(),
)
);
}