Skip to content

Commit

Permalink
Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
naweed committed Aug 25, 2022
1 parent 9330fee commit 7aa5ada
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 30 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified src/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@



namespace Maui.Apps.Framework.Converters;
namespace Maui.Apps.Framework.Converters;

public class InverseBooleanConverter : IValueConverter
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

namespace Maui.Apps.Framework.Extensions;
namespace Maui.Apps.Framework.Extensions;

public class EnumerationContainsElementConverter : IValueConverter
{
Expand Down
5 changes: 1 addition & 4 deletions src/Maui.Apps.Framework/Extensions/ListExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@



namespace Maui.Apps.Framework.Extensions;
namespace Maui.Apps.Framework.Extensions;

public static class ListExtensions
{
Expand Down
3 changes: 1 addition & 2 deletions src/Maui.Apps.Framework/UI/ContentDisplayMode.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

namespace Maui.Apps.Framework.UI;
namespace Maui.Apps.Framework.UI;

public enum ContentDisplayMode
{
Expand Down
3 changes: 1 addition & 2 deletions src/Maui.Apps.Framework/UI/PageMode.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

namespace Maui.Apps.Framework.UI;
namespace Maui.Apps.Framework.UI;

public enum PageMode
{
Expand Down
Binary file modified src/MauiTubePlayer/.DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion src/MauiTubePlayer/GlobalUsings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@
global using MauiTubePlayer.Views.Base;
global using Maui.Apps.Framework.Exceptions;
global using CommunityToolkit.Mvvm.ComponentModel;
global using System.Collections.ObjectModel;
global using System.Collections.ObjectModel;
global using Maui.Apps.Framework.Extensions;
5 changes: 2 additions & 3 deletions src/MauiTubePlayer/Helpers/ServiceHelper.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@

namespace MauiTubePlayer.Helpers;
namespace MauiTubePlayer.Helpers;

public static class ServiceHelpers
{

public static TService GetService<TService>() =>
public static TService GetService<TService>() => //test
Current.GetService<TService>();

public static IServiceProvider Current =>
Expand Down
4 changes: 1 addition & 3 deletions src/MauiTubePlayer/IServices/IApiService.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@


namespace MauiTubePlayer.IServices;
namespace MauiTubePlayer.IServices;

public interface IApiService
{
Expand Down
3 changes: 1 addition & 2 deletions src/MauiTubePlayer/Models/Constants.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

namespace MauiTubePlayer.Models;
namespace MauiTubePlayer.Models;

public static class Constants
{
Expand Down
5 changes: 1 addition & 4 deletions src/MauiTubePlayer/Models/YoutubeModels.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@



namespace MauiTubePlayer.Models;
namespace MauiTubePlayer.Models;


public class VideoSearchResult
Expand Down
4 changes: 1 addition & 3 deletions src/MauiTubePlayer/ViewModels/StartPageViewModel.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using Maui.Apps.Framework.Extensions;

namespace MauiTubePlayer.ViewModels;
namespace MauiTubePlayer.ViewModels;

public partial class StartPageViewModel : AppViewModelBase
{
Expand Down

0 comments on commit 7aa5ada

Please sign in to comment.