Skip to main content

Avatar With Border

Avatar

import 'package:extended_image/extended_image.dart';
import 'package:flutter/material.dart';
DecoratedBox(
decoration: BoxDecoration(
shape: BoxShape.circle,
border: Border.all(
color: Theme.of(context).primaryColor,
width: 2,
),
),
child: Padding(
padding: const EdgeInsets.all(6),
child: ClipOval(
child: ExtendedImage.network(
'https://images.pexels.com/photos/846741/pexels-photo-846741.jpeg?auto=compress&cs=tinysrgb&w=600',
fit: BoxFit.cover,
width: 48 - 6 - 2,
height: 48 - 6 - 2,
),
),
),
),