“Flutter transparente AppBar” Respostas de código

Flutter transparente 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

Como tornar o AppBar transparente em vibração

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

Flutter transparente AppBar

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

Respostas semelhantes a “Flutter transparente AppBar”

Perguntas semelhantes a “Flutter transparente AppBar”

Mais respostas relacionadas para “Flutter transparente AppBar” em Dart

Procure respostas de código populares por idioma

Procurar outros idiomas de código