“Appbar transparan flutter” Kode Jawaban

Appbar transparan flutter

@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

cara membuat appbar transparan dalam flutter

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

Appbar transparan 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

Jawaban yang mirip dengan “Appbar transparan flutter”

Pertanyaan yang mirip dengan “Appbar transparan flutter”

Lebih banyak jawaban terkait untuk “Appbar transparan flutter” di Dart

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya