You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.7 KiB
Dart
66 lines
1.7 KiB
Dart
5 years ago
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class MenuWidget extends StatelessWidget {
|
||
5 years ago
|
final Function(String) onItemClick;
|
||
5 years ago
|
|
||
|
const MenuWidget({Key key, this.onItemClick}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Container(
|
||
|
color: Colors.white,
|
||
|
padding: const EdgeInsets.only(top: 30),
|
||
|
child: Column(
|
||
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||
|
children: <Widget>[
|
||
|
SizedBox(
|
||
|
height: 30,
|
||
|
),
|
||
|
CircleAvatar(
|
||
|
radius: 65,
|
||
|
backgroundColor: Colors.grey,
|
||
|
child: CircleAvatar(
|
||
|
radius: 60,
|
||
|
backgroundImage: AssetImage('assets/images/user_profile.jpg'),
|
||
|
),
|
||
|
),
|
||
|
SizedBox(
|
||
|
height: 20,
|
||
|
),
|
||
|
Text(
|
||
|
'Nick',
|
||
|
style: TextStyle(
|
||
|
color: Colors.black,
|
||
|
fontWeight: FontWeight.bold,
|
||
|
fontSize: 30,
|
||
|
fontFamily: 'BalsamiqSans'),
|
||
|
),
|
||
|
SizedBox(
|
||
|
height: 20,
|
||
|
),
|
||
|
sliderItem('Home', Icons.home),
|
||
|
sliderItem('Add Post', Icons.add_circle),
|
||
|
sliderItem('Notification', Icons.notifications_active),
|
||
|
sliderItem('Likes', Icons.favorite),
|
||
|
sliderItem('Setting', Icons.settings),
|
||
|
sliderItem('LogOut', Icons.arrow_back_ios)
|
||
|
],
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
Widget sliderItem(String title, IconData icons) => ListTile(
|
||
|
title: Text(
|
||
|
title,
|
||
|
style:
|
||
|
TextStyle(color: Colors.black, fontFamily: 'BalsamiqSans_Regular'),
|
||
|
),
|
||
|
leading: Icon(
|
||
|
icons,
|
||
|
color: Colors.black,
|
||
|
),
|
||
5 years ago
|
onTap: () {
|
||
|
onItemClick(title);
|
||
|
});
|
||
5 years ago
|
}
|