You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
603 B
25 lines
603 B
import 'package:flutter/material.dart';
|
|
class PloneAvatarWidget extends StatelessWidget {
|
|
final List<String>? urls;
|
|
final double? width;
|
|
final double? height;
|
|
final BoxFit? fit;
|
|
const PloneAvatarWidget({Key? key, this.width,
|
|
this.height,
|
|
this.urls,
|
|
this.fit = BoxFit.cover}) : super(key: key);
|
|
// String get imagePath {
|
|
// if (urls == null) {
|
|
// return '';
|
|
// } else if (urls!.isEmpty) {
|
|
// return '';
|
|
// } else {
|
|
// return urls!.first.imageWithHost;
|
|
// }
|
|
// }
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|