“трепетание прозрачным Appbar” Ответ

трепетание прозрачным 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

@override
  Widget build(BuildContext context) {
    return Scaffold(
      
      appBar: AppBar(
        backgroundColor: Colors.transparent,      //<<<<<<<<<
        elevation: 0,
        title: Text("Title"),
      ),
      body: Center(child: Text("Content")),
The Best

Ответы похожие на “трепетание прозрачным Appbar”

Вопросы похожие на “трепетание прозрачным Appbar”

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

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

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