Example #1
0
 private void DestroyBasic()
 {
     try
     {
         BottomBar = null !;
         FragmentBottomNavigator = null !;
         SendMoneyFragment       = null !;
         AddFundsFragment        = null !;
         TypeOpenPayment         = null !;
     }
     catch (Exception e)
     {
         Methods.DisplayReportResultTrack(e);
     }
 }
 private void DestroyBasic()
 {
     try
     {
         BottomBar = null;
         FragmentBottomNavigator = null;
         SendMoneyFragment       = null;
         AddFundsFragment        = null;
         TypeOpenPayment         = null;
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
     }
 }
Example #3
0
        private void SetupBottomNavigationView()
        {
            try
            {
                FragmentBottomNavigator = new FragmentBottomNavigationView(this);

                SendMoneyFragment = new SendMoneyFragment();
                AddFundsFragment  = new AddFundsFragment();

                FragmentBottomNavigator.FragmentListTab0.Add(SendMoneyFragment);
                FragmentBottomNavigator.FragmentListTab1.Add(AddFundsFragment);

                FragmentBottomNavigator.NavigationTabBarOnStartTabSelected(0);
            }
            catch (Exception e)
            {
                Methods.DisplayReportResultTrack(e);
            }
        }
        private void SetupBottomNavigationView()
        {
            try
            {
                FragmentBottomNavigator = new FragmentBottomNavigationView(this);

                SendMoneyFragment = new SendMoneyFragment();
                AddFundsFragment  = new AddFundsFragment();

                FragmentBottomNavigator.FragmentListTab0.Add(SendMoneyFragment);
                FragmentBottomNavigator.FragmentListTab1.Add(AddFundsFragment);

                FragmentBottomNavigator.NavigationTabBarOnStartTabSelected(0);
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
            }
        }