Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
anton.rozdorozhniuk
2020-09-08 00:33:16 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6e90afd684ebd36fa092a04807fbdbcb320ca177
6e90afd6
1 parent
aa7fb11d
rx list sort method compare param passed
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/src/state_manager/rx/rx_iterables/rx_list.dart
lib/src/state_manager/rx/rx_iterables/rx_list.dart
View file @
6e90afd
...
...
@@ -146,7 +146,7 @@ class RxList<E> implements List<E>, RxInterface<List<E>> {
@override
void
sort
([
int
compare
(
E
a
,
E
b
)])
{
_list
.
sort
();
_list
.
sort
(
compare
);
subject
.
add
(
_list
);
}
...
...
Please
register
or
login
to post a comment