Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.3.3
version: 1.3.4

environment:
sdk: '>=3.0.0 <4.0.0'
Expand All @@ -40,7 +40,7 @@ dependencies:
lazy_load_scrollview:
infinite_scroll_pagination:

likeminds_feed: 1.6.1
likeminds_feed: 1.6.2
# path: ../../LikeMinds-Flutter-Feed-SDK

likeminds_feed_ui_fl:
Expand Down
5 changes: 3 additions & 2 deletions lib/src/widgets/common/extras/loader.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ import 'package:flutter/material.dart';

class LMLoader extends StatelessWidget {
final bool isPrimary;
final Color? color;

const LMLoader({super.key, this.isPrimary = true});
const LMLoader({super.key, this.isPrimary = true, this.color});

@override
Widget build(BuildContext context) {
return CircularProgressIndicator(
color: isPrimary ? Theme.of(context).primaryColor : Colors.white,
color: color ?? (isPrimary ? Theme.of(context).primaryColor : Colors.white),
);
}
}
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: likeminds_feed_ui_fl
description: A Flutter package for Likeminds Feed UI widgets. Used alongside the Likeminds Feed SDK package (likeminds_feed) to build custom interfaces.
version: 1.3.3
version: 1.3.4
publish_to: none
homepage: "www.likeminds.community/"

Expand Down Expand Up @@ -28,7 +28,7 @@ dependencies:
media_kit_video: ^1.1.8 # For video rendering.
media_kit_libs_video: ^1.0.1

likeminds_feed: 1.6.1
likeminds_feed: 1.6.2
# path: ../LikeMinds-Flutter-Feed-SDK


Expand Down