public MainViewModel(INavigation navigation)
        {
            this._navigation           = navigation;
            LaunchStartButtonCommand   = new Command(StartButtonClicked);
            SettingsTappedCommand      = new Command(SetingsButtonTapped);
            CheckConnectionCommand     = new Command(CheckConnection);
            CheckConfigurationsCommand = new Command(CheckConfigurations);
            CheckAppVersionCommand     = new Command(CheckAppVersion);

            NativeCamera.InitCamera();
        }