Skip to content

Commit 665eb77

Browse files
Merge pull request #22 from TheEightBot/michaelstonis-patch-1
Update README.md
2 parents 17230f8 + c95c8af commit 665eb77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# StellarUI
22

33
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4-
[![NuGet](https://img.shields.io/nuget/v/Stellar.svg)](https://www.nuget.org/packages/Stellar/)
4+
[![NuGet](https://img.shields.io/nuget/v/Stellar.svg)](https://www.nuget.org/packages/StellarUI/)
55

66
A comprehensive cross-platform .NET application framework built on ReactiveUI for creating reactive MVVM applications.
77

@@ -173,7 +173,7 @@ public class SampleView : ContentViewBase<SampleViewModel>
173173
}
174174

175175
// Bind the UI elements to the view model
176-
public override void Bind(CompositeDisposable disposables)
176+
public override void Bind(WeakCompositeDisposable disposables)
177177
{
178178
this.OneWayBind(ViewModel, vm => vm.Text, v => v._label.Text)
179179
.DisposeWith(disposables);
@@ -201,7 +201,7 @@ public partial class SampleViewModel : ViewModelBase
201201
}
202202

203203
// Bind method for setting up reactive bindings
204-
protected override void Bind(CompositeDisposable disposables)
204+
protected override void Bind(WeakCompositeDisposable disposables)
205205
{
206206
// Setup observables, commands, etc.
207207
this.WhenAnyValue(x => x.Text)

0 commit comments

Comments
 (0)