Skip to content

Instantly share code, notes, and snippets.

@HansMuller
Created August 8, 2022 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HansMuller/db21807dfd63db1408a7a16f4cd56e05 to your computer and use it in GitHub Desktop.
Save HansMuller/db21807dfd63db1408a7a16f4cd56e05 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class Home extends StatelessWidget {
const Home({ Key? key }) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
actions: <Widget>[
IconButton(
onPressed: () {},
icon: const Icon(Icons.favorite),
),
IconButton(
onPressed: () {},
icon: Icon(Icons.audiotrack),
),
IconButton(
onPressed: () {},
icon: Icon(Icons.beach_access),
),
],
),
);
}
}
void main() {
runApp(
MaterialApp(
debugShowCheckedModeBanner: false,
home: Home(),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment