Files
Flutter-Music-Player/lib/widgets/mp_circle_avatar.dart
2018-03-24 18:43:41 +05:30

22 lines
512 B
Dart

import 'dart:io';
import 'package:flutter/material.dart';
Widget avatar(File f, String title, MaterialColor color) {
return new Material(
borderRadius: new BorderRadius.circular(20.0),
elevation: 3.0,
child: f != null
? new Image.file(
f,
fit: BoxFit.cover,
)
: new CircleAvatar(
child: new Icon(
Icons.play_arrow,
color: Colors.white,
),
backgroundColor: color,
),
);
}