skip to Main Content

Display Text on right side of AppBarComponent – Flutter

So I have this AppBarComponent that displays the appbar of my app. class AppBarComponent { static Widget titleWithImage(String title) { return Row( children: <Widget>[ Image.asset( 'logo.png', fit: BoxFit.contain, width: 40, ), Padding( padding: const EdgeInsets.symmetric(horizontal: 10.0), child: Text('title'), ), Row(…

VIEW QUESTION
Back To Top
Search