Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class LibraryPage extends StatelessWidget {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- elevation: 0,
- actions: [
- Row(
- mainAxisSize: MainAxisSize.max,
- mainAxisAlignment: MainAxisAlignment.spaceEvenly,
- //crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- Align(
- alignment: Alignment.centerLeft,
- child: IconButton(
- icon: Icon(Icons.sort),
- onPressed: () {},
- ),
- ),
- IconButton(
- icon: Icon(Icons.add_circle),
- onPressed: () {},
- ),
- ],
- ),
- ],
- ),
- //body:
- body: Container(),
- );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment