pparth602

paste

Sep 14th, 2020
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.84 KB | None | 0 0
  1. class LibraryPage extends StatelessWidget {
  2.   @override
  3.   Widget build(BuildContext context) {
  4.     return Scaffold(
  5.       appBar: AppBar(
  6.         elevation: 0,
  7.         actions: [
  8.           Row(
  9.             mainAxisSize: MainAxisSize.max,
  10.             mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  11.             //crossAxisAlignment: CrossAxisAlignment.center,
  12.             children: [
  13.               Align(
  14.                 alignment: Alignment.centerLeft,
  15.                 child: IconButton(
  16.                   icon: Icon(Icons.sort),
  17.                   onPressed: () {},
  18.                 ),
  19.               ),
  20.               IconButton(
  21.                 icon: Icon(Icons.add_circle),
  22.                 onPressed: () {},
  23.               ),
  24.             ],
  25.           ),
  26.         ],
  27.       ),
  28.       //body:
  29.       body: Container(),
  30.     );
  31.   }
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment