-
Is there anyway to append more data to the notification? anyway to get the notification body by id?
-
It would be great if this package was able to be extended to work on elements rendered using .map(). `react-transition-group` has the `TransitionGroup` component to make this possible, however to make…
-
I have model which implements ChangeNotifier
```
class DataModel with ChangeNotifier{
List data = List();
void addData(Data data){
data.add(data);
notifyListeners();
}
}…
-
**This is the code of animated list**
`AnimatedList(
key:_listKey,
reverse: true,
controller: controller,
initialItemCount: initialItemCo…
-
Let's take the method `remove` and setter `length` of the `ObservableList` class:
```
final list = ObservableList.of([null, 2, 3]);
list.observe((ListChange listChange) {
// (1): i…
-
I implemented an AnimatedFirestoreList as per the documentation. When an item is removed, it animates out correctly. However, the remaining list items instantaneously jump into the new available space…
-
I'm considering RNP as component lib for my app. Everything seems very neat and well thought out. I like it!
I do wonder if you have any plans on implementing more animations, or is this deliberate…
-
With ListView in child of SmartRefresher it works perfectly. If I try to change ListView with AnimatedList I have empty screen with no items. My SmartRefresher widget:
```
SmartRefresher…
-
Compiler message:
lib/ui/page/favourite_list_page.dart:11:1: Error: 'SliverAnimatedListState' is imported from both 'package:flutter/src/widgets/animated_list.dart' and 'package:fun_android/flutter/r…
-
I'm working on a To-Do-List like UI which you type in your title & description(File 1) and render in a screen (File 2). These files works totally fine in a separated flutter project when File 1 is my …