Answers for "subtitle below appbar flutter"

0

subtitle below appbar flutter

appBar: AppBar(
    title: Text('Title 1'),
    centerTitle: true,
    bottom: PreferredSize(
        child: Text("Title 2"),
        preferredSize: Size.fromHeight(0),
        // change height for changing app bar height as per content
   ),
  )
Posted by: Guest on February-08-2022

Browse Popular Code Answers by Language