“Как сделать Appbar прозрачным в Flutter” Ответ

трепетание прозрачным Appbar

@override
  Widget build(BuildContext context) {
    return Scaffold(
      extendBodyBehindAppBar: true,
      backgroundColor: Colors.red,
      appBar: AppBar(
        backgroundColor: Colors.transparent,
        elevation: 0,
        title: Text("Title"),
      ),
      body: Center(child: Text("Content")),
    );
  }
Determined Dunlin

Как сделать Appbar прозрачным в Flutter

Scaffold(
 extendBodyBehindAppBar: true,
  // or, extandbody: true,
 AppBar(
  backgroundColor: Colors.transparent, 
  elevation: 0.0,)
);
Magnificent Moose

Ответы похожие на “Как сделать Appbar прозрачным в Flutter”

Вопросы похожие на “Как сделать Appbar прозрачным в Flutter”

Больше похожих ответов на “Как сделать Appbar прозрачным в Flutter” по Dart

Смотреть популярные ответы по языку

Смотреть другие языки программирования