Skip to content

Commit 388cd49

Browse files
Merge pull request LikeMindsCommunity#69 from LikeMindsCommunity/release/v1.3.11
Release/v1.3.11
2 parents 6605b09 + 680857b commit 388cd49

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 1.3.10
19+
version: 1.3.11
2020

2121
environment:
2222
sdk: ">=3.0.0 <4.0.0"

lib/src/widgets/post/post_header.dart

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class LMPostHeader extends StatelessWidget {
7373
onTap: onProfileTap,
7474
fallbackTextStyle: fallbackTextStyle,
7575
),
76-
kHorizontalPaddingLarge,
76+
kHorizontalPaddingMedium,
7777
Container(
7878
constraints: BoxConstraints(
7979
maxWidth: screenSize.width * 0.66,
@@ -169,13 +169,14 @@ class LMPostHeader extends StatelessWidget {
169169
subText != null
170170
? kHorizontalPaddingXSmall
171171
: const SizedBox(),
172-
LMTextView(
173-
text: subText != null ? '·' : '',
174-
textStyle: const TextStyle(
175-
fontSize: kFontSmall,
176-
color: kGrey3Color,
172+
if (subText != null)
173+
Padding(
174+
padding: const EdgeInsets.only(top: 1,left:1),
175+
child: CircleAvatar(
176+
radius: 2,
177+
backgroundColor: kGrey3Color,
178+
),
177179
),
178-
),
179180
subText != null
180181
? kHorizontalPaddingXSmall
181182
: const SizedBox(),

lib/src/widgets/post/post_media.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ class _LMPostMediaState extends State<LMPostMedia> {
9797
initialiseVideoController: widget.initialiseVideoController,
9898
attachments: attachments!,
9999
borderRadius: widget.borderRadius,
100-
backgroundColor: widget.backgroundColor,
101100
activeIndicatorColor: widget.carouselActiveIndicatorColor,
102101
inactiveIndicatorColor: widget.carouselInactiveIndicatorColor,
103102
errorWidget: widget.errorWidget,

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: likeminds_feed_ui_fl
22
description: A Flutter package for Likeminds Feed UI widgets. Used alongside the Likeminds Feed SDK package (likeminds_feed) to build custom interfaces.
3-
version: 1.3.10
3+
version: 1.3.11
44
publish_to: none
55
homepage: "www.likeminds.community/"
66

77
environment:
88
sdk: ">=3.0.0 <4.0.0"
9-
flutter: ">=1.17.0"
9+
flutter: ">=3.0.0 <=3.10.6"
1010

1111
dependencies:
1212
flutter:
@@ -22,7 +22,7 @@ dependencies:
2222
flutter_layout_grid: 2.0.5
2323
open_filex: ^4.3.2
2424
http:
25-
extended_image: 8.1.1
25+
extended_image: 8.1.0
2626
media_kit: ^1.1.7 # Primary package.
2727
media_kit_video: ^1.1.8 # For video rendering.
2828
media_kit_libs_video: ^1.0.1

0 commit comments

Comments
 (0)