From 6a0ac1f18e641062b2f20f8325c5650d9c919d0f Mon Sep 17 00:00:00 2001 From: Daviiddoo Date: Wed, 24 Jul 2024 23:54:56 +0800 Subject: [PATCH] Removed references to constructor properties --- forui/lib/src/widgets/avatar.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/forui/lib/src/widgets/avatar.dart b/forui/lib/src/widgets/avatar.dart index dc1ba23c9..6ad88c896 100644 --- a/forui/lib/src/widgets/avatar.dart +++ b/forui/lib/src/widgets/avatar.dart @@ -7,11 +7,11 @@ import 'package:forui/forui.dart'; /// An image element with a fallback for representing the user. /// -/// use [image] to provide a profile image displayed within the circle. +/// use image property to provide a profile image displayed within the circle. /// Typically used with a user's profile image. If the image fails to load, -/// [placeholderBuilder] is used instead, which usually displays the user's initials. +/// the placeholderBuilder property is used instead, which usually displays the user's initials. /// -/// If the user's profile has no image, use [placeholderBuilder] to provide +/// If the user's profile has no image, use the placeholderBuilder property to provide /// the initials using a [Text] widget styled with [FAvatarStyle.backgroundColor]. class FAvatar extends StatelessWidget { /// The style. Defaults to [FThemeData.avatarStyle].