Skip to content

chore(deps): update dependency xamarin.android.support.swiperefreshlayout to 28.0.0.3 #850

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion Xamarin/ReactiveRecyclerView/Droid/TestApp.Droid.csproj
Original file line number Diff line number Diff line change
@@ -132,7 +132,7 @@
<Version>28.0.0.1</Version>
</PackageReference>
<PackageReference Include="Xamarin.Android.Support.SwipeRefreshLayout">
<Version>28.0.0.1</Version>
<Version>28.0.0.3</Version>
</PackageReference>
<PackageReference Include="Xamarin.Android.Support.Transition">
<Version>28.0.0.1</Version>

Unchanged files with check annotations Beta

public partial class ItemsDDView : UserControl, IViewFor<ItemsDDViewModel>
{
public ItemsDDViewModel ViewModel { get; set; }

Check warning on line 13 in winforms/demo2/WinForms.Reactive.Client/Views/ItemsDDView.cs

GitHub Actions / build / build

Nullability of reference types in type of parameter 'value' of 'void ItemsDDView.ViewModel.set' doesn't match implicitly implemented member 'void IViewFor<ItemsDDViewModel>.ViewModel.set' (possibly because of nullability attributes).
object IViewFor.ViewModel
{
get => ViewModel;
set => ViewModel = (ItemsDDViewModel)value;

Check warning on line 17 in winforms/demo2/WinForms.Reactive.Client/Views/ItemsDDView.cs

GitHub Actions / build / build

Nullability of reference types in type of parameter 'value' doesn't match implemented member 'void IViewFor.ViewModel.set' (possibly because of nullability attributes).
}
public ItemsDDView()
public partial class ItemsView : UserControl, IViewFor<ItemsViewModel>
{
public ItemsViewModel ViewModel { get; set; }

Check warning on line 12 in winforms/demo2/WinForms.Reactive.Client/Views/ItemsView.cs

GitHub Actions / build / build

Nullability of reference types in type of parameter 'value' of 'void ItemsView.ViewModel.set' doesn't match implicitly implemented member 'void IViewFor<ItemsViewModel>.ViewModel.set' (possibly because of nullability attributes).
object IViewFor.ViewModel
{
get => ViewModel;
set => ViewModel = (ItemsViewModel)value;

Check warning on line 16 in winforms/demo2/WinForms.Reactive.Client/Views/ItemsView.cs

GitHub Actions / build / build

Nullability of reference types in type of parameter 'value' doesn't match implemented member 'void IViewFor.ViewModel.set' (possibly because of nullability attributes).
}
public ItemsView()
[ObservableAsProperty] public bool HasSubItems { get; }
public ItemsViewModel(
IScheduler mainThreadScheduler = null,

Check warning on line 68 in winforms/demo2/WinForms.Reactive.Client/ViewModels/ItemsViewModel.cs

GitHub Actions / build / build

Cannot convert null literal to non-nullable reference type.
IItemsService? itemsService = null
)
{
public partial class ItemTagsView : Form, IViewFor<ItemTagsViewModel>
{
public ItemTagsViewModel ViewModel { get; set; }

Check warning on line 10 in winforms/demo2/WinForms.Reactive.Client/Views/ItemTagsView.cs

GitHub Actions / build / build

Nullability of reference types in type of parameter 'value' of 'void ItemTagsView.ViewModel.set' doesn't match implicitly implemented member 'void IViewFor<ItemTagsViewModel>.ViewModel.set' (possibly because of nullability attributes).
object IViewFor.ViewModel
{
get => ViewModel;
set => ViewModel = (ItemTagsViewModel)value;

Check warning on line 15 in winforms/demo2/WinForms.Reactive.Client/Views/ItemTagsView.cs

GitHub Actions / build / build

Nullability of reference types in type of parameter 'value' doesn't match implemented member 'void IViewFor.ViewModel.set' (possibly because of nullability attributes).
}
public ItemTagsView()
});
}
public ShellViewModel ViewModel { get; set; }

Check warning on line 23 in winforms/demo2/WinForms.Reactive.Client/Views/ShellView.cs

GitHub Actions / build / build

Nullability of reference types in type of parameter 'value' of 'void ShellView.ViewModel.set' doesn't match implicitly implemented member 'void IViewFor<ShellViewModel>.ViewModel.set' (possibly because of nullability attributes).
object IViewFor.ViewModel
{
get => ViewModel;
set => ViewModel = (ShellViewModel)value;

Check warning on line 28 in winforms/demo2/WinForms.Reactive.Client/Views/ShellView.cs

GitHub Actions / build / build

Nullability of reference types in type of parameter 'value' doesn't match implemented member 'void IViewFor.ViewModel.set' (possibly because of nullability attributes).
}
}
}
var viewModel = new ShellViewModel();
Locator.CurrentMutable.RegisterConstant(viewModel, typeof(IScreen));
var view = ViewLocator.Current.ResolveView(new ShellViewModel());
view.ViewModel = viewModel;

Check warning on line 46 in winforms/demo2/WinForms.Reactive.Client/Bootstrapper.cs

GitHub Actions / build / build

Dereference of a possibly null reference.
Application.Run((Form)view);
}
}