skip to Main Content

Flutter align IconButton to the right in Row

Here is my code; SizedBox( width: size.width, child: Row( children: [ Padding( padding: const EdgeInsets.only(left: 10, bottom: 10, top: 10), child: ClipRRect( borderRadius: BorderRadius.circular(100), child: Image.asset( 'assets/images/me.png', height: 30, width: 30, fit: BoxFit.cover, ), ), ), const Padding( padding: EdgeInsets.only(left:…

VIEW QUESTION
Back To Top
Search