bykovme/nswallet

View on GitHub

Showing 488 of 488 total issues

Method ThemeSelector has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        public void ThemeSelector(bool premium)
        {
            string[] buttons = null;
            if (premium) {
                buttons = new string[]
Severity: Minor
Found in src/NSWallet/NSWallet/Views/SettingsScreen/SettingsScreenView.cs - About 1 hr to fix

    Method CheckPassword has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            public bool CheckPassword()
            {
                if(password!=null&&pathToDatabase!=null)
                {
                    if(compareDBVersions()==false)
    Severity: Minor
    Found in src/NSWallet/NSWallet.Console/Checkpass.cs - About 1 hr to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

                  var copyButton = new Button {
                      FontFamily = NSWFontsController.CurrentTypeface,
                      Text = TR.Tr("copy_here"),
                      HorizontalOptions = LayoutOptions.FillAndExpand,
                      TextColor = Theme.Current.CommonButtonTextColor,
      Severity: Major
      Found in src/NSWallet/NSWallet/Views/MainScreen/MainScreenView.cs and 1 other location - About 1 hr to fix
      src/NSWallet/NSWallet/Views/MainScreen/MainScreenView.cs on lines 367..376

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 92.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

                  var moveButton = new Button {
                      FontFamily = NSWFontsController.CurrentTypeface,
                      Text = TR.Tr("move_here"),
                      HorizontalOptions = LayoutOptions.FillAndExpand,
                      TextColor = Theme.Current.CommonButtonTextColor,
      Severity: Major
      Found in src/NSWallet/NSWallet/Views/MainScreen/MainScreenView.cs and 1 other location - About 1 hr to fix
      src/NSWallet/NSWallet/Views/MainScreen/MainScreenView.cs on lines 353..362

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 92.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

              public List<string> SortedByDateTime()
              {
                  List<string> outItems = new List<string>();
                  items.Sort(dtComparer);
                  var count = 10;
      Severity: Major
      Found in src/NSWallet/NSWallet.Shared/Helpers/ItemsStats.cs and 1 other location - About 1 hr to fix
      src/NSWallet/NSWallet.Shared/Helpers/ItemsStats.cs on lines 110..122

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 91.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

              public List<string> SortedByCount()
              {
                  List<string> outItems = new List<string>();
                  items.Sort(countComparer);
                  var count = 10;
      Severity: Major
      Found in src/NSWallet/NSWallet.Shared/Helpers/ItemsStats.cs and 1 other location - About 1 hr to fix
      src/NSWallet/NSWallet.Shared/Helpers/ItemsStats.cs on lines 76..88

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 91.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Method CreateItem has 8 arguments (exceeds 4 allowed). Consider refactoring.
      Open

              public void CreateItem(string itemID, string parentID, byte[] name, string icon,
                                     bool folder, string createTimestamp, string changeTimestamp, bool deleted)
      Severity: Major
      Found in src/NSWallet/NSWallet.Shared/Database/NSWalletDB.cs - About 1 hr to fix

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                        DateTime.TryParse(str.Remove(0, 4).Remove(16).Replace('-', ' ').Insert(5, "-").Insert(8, "-").Insert(14, ":").Insert(17, ":"), out DateTime backupDate);
        Severity: Major
        Found in src/NSWallet/NSWallet.Shared/Helpers/Common.cs and 1 other location - About 1 hr to fix
        src/NSWallet/NSWallet.Shared/Helpers/Common.cs on lines 178..178

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 90.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                        var expectedDateString = name.Remove(0, 4).Remove(16).Replace('-', ' ').Insert(5, "-").Insert(8, "-").Insert(14, ":").Insert(17, ":");
        Severity: Major
        Found in src/NSWallet/NSWallet.Shared/Helpers/Common.cs and 1 other location - About 1 hr to fix
        src/NSWallet/NSWallet.Shared/Helpers/Common.cs on lines 128..128

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 90.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                    var acceptButton = new Button {
                        CornerRadius = 0,
                        HorizontalOptions = LayoutOptions.FillAndExpand,
                        BackgroundColor = Theme.Current.CommonButtonBackground,
                        TextColor = Theme.Current.CommonButtonTextColor,
        Severity: Minor
        Found in src/NSWallet/NSWallet/Views/License/LicensePageView.cs and 1 other location - About 1 hr to fix
        src/NSWallet/NSWallet/Views/License/LicensePageView.cs on lines 34..42

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 88.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                    var rejectButton = new Button {
                        CornerRadius = 0,
                        HorizontalOptions = LayoutOptions.FillAndExpand,
                        BackgroundColor = Theme.Current.CommonRejectButtonBackgroundColor,
                        TextColor = Theme.Current.CommonRejectButtonTextColor,
        Severity: Minor
        Found in src/NSWallet/NSWallet/Views/License/LicensePageView.cs and 1 other location - About 1 hr to fix
        src/NSWallet/NSWallet/Views/License/LicensePageView.cs on lines 46..54

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 88.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

                public IEnumerable<string> GetFilePaths(string path)
                {
                    try {
                        return Directory.EnumerateFiles(path);
                    } catch (DirectoryNotFoundException ex) {
        Severity: Minor
        Found in src/NSWallet/Droid/Interfaces/FileService.cs and 1 other location - About 55 mins to fix
        src/NSWallet/NSWallet.Mac/Interfaces/FileService.cs on lines 59..68

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 87.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                public static void TermsOfUse(INavigation navigation, string title, string htmlSource, Action<bool> action, bool buttons = true)
                {
                    navigation.PushModalAsync(new NavigationPage(new LicensePageView(title, htmlSource, action, buttons)) {
                        BarBackgroundColor = Theme.Current.AppHeaderBackground,
                        BarTextColor = Theme.Current.AppHeaderTextColor
        Severity: Minor
        Found in src/NSWallet/NSWallet/Views/Pages.cs and 1 other location - About 55 mins to fix
        src/NSWallet/NSWallet/Views/Pages.cs on lines 305..311

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 87.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

                public IEnumerable<string> GetFilePaths(string path)
                {
                    try {
                        return Directory.EnumerateFiles(path);
                    } catch (DirectoryNotFoundException ex) {
        Severity: Minor
        Found in src/NSWallet/NSWallet.Mac/Interfaces/FileService.cs and 1 other location - About 55 mins to fix
        src/NSWallet/Droid/Interfaces/FileService.cs on lines 95..104

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 87.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

                public static void PrivacyPolicy(INavigation navigation, string title, string htmlSource, Action<bool> action, bool buttons = true)
                {
                    navigation.PushModalAsync(new NavigationPage(new LicensePageView(title, htmlSource, action, buttons)) {
                        BarBackgroundColor = Theme.Current.AppHeaderBackground,
                        BarTextColor = Theme.Current.AppHeaderTextColor
        Severity: Minor
        Found in src/NSWallet/NSWallet/Views/Pages.cs and 1 other location - About 55 mins to fix
        src/NSWallet/NSWallet/Views/Pages.cs on lines 313..319

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 87.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Identical blocks of code found in 3 locations. Consider refactoring.
        Open

                public string ReadFromFile(string path)
                {
                    try {
                        using (var streamReader = new StreamReader(path)) {
                            string content = streamReader.ReadToEnd();
        Severity: Major
        Found in src/NSWallet/Droid/Interfaces/FileService.cs and 2 other locations - About 55 mins to fix
        src/NSWallet/NSWallet.Mac/Interfaces/FileService.cs on lines 134..145
        src/NSWallet/iOS/Interfaces/FileService.cs on lines 162..173

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 85.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Identical blocks of code found in 3 locations. Consider refactoring.
        Open

                public string ReadFromFile(string path)
                {
                    try {
                        using (var streamReader = new StreamReader(path)) {
                            string content = streamReader.ReadToEnd();
        Severity: Major
        Found in src/NSWallet/NSWallet.Mac/Interfaces/FileService.cs and 2 other locations - About 55 mins to fix
        src/NSWallet/Droid/Interfaces/FileService.cs on lines 182..193
        src/NSWallet/iOS/Interfaces/FileService.cs on lines 162..173

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 85.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Identical blocks of code found in 3 locations. Consider refactoring.
        Open

                public string ReadFromFile(string path)
                {
                    try {
                        using (var streamReader = new StreamReader(path)) {
                            string content = streamReader.ReadToEnd();
        Severity: Major
        Found in src/NSWallet/iOS/Interfaces/FileService.cs and 2 other locations - About 55 mins to fix
        src/NSWallet/Droid/Interfaces/FileService.cs on lines 182..193
        src/NSWallet/NSWallet.Mac/Interfaces/FileService.cs on lines 134..145

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 85.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Method saveIcons has a Cognitive Complexity of 24 (exceeds 20 allowed). Consider refactoring.
        Open

                static void saveIcons(List<ImageModel> images, IconSet iconSet)
                {
                    if (images != null)
                    {
                        if (images.Count > 0)
        Severity: Minor
        Found in src/NSWallet/NSWallet.Shared/Upgrades/UpgradeTo02.cs - About 55 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method AddCheckbox has 7 arguments (exceeds 4 allowed). Consider refactoring.
        Open

                void AddCheckbox(StackLayout settingsLayout, string settingName, string checkedProperty, string menuIcon, string toggleCommand, string chosenSelectionProperty = null, bool isPremium = false)
        Severity: Major
        Found in src/NSWallet/NSWallet/Views/SettingsScreen/SettingsScreenView.cs - About 50 mins to fix
          Severity
          Category
          Status
          Source
          Language