public override void OnViewCreated(View view, Bundle savedInstanceState)
        {
            base.OnViewCreated(view, savedInstanceState);
            dobLayout         = view.FindViewById <TextInputLayout>(Resource.Id.pro_dob_et);
            dobEditText       = dobLayout.FindViewById <TextInputEditText>(Resource.Id.dob_et);
            fabPictureOptions = view.FindViewById <FloatingActionButton>(Resource.Id.pro_cam_fab);
            profileImageView  = view.FindViewById <CircleImageView>(Resource.Id.pro_prof_iv);
            continueBtn       = view.FindViewById <MaterialButton>(Resource.Id.pro_cont_btn);
            fullnameEt        = view.FindViewById <TextInputLayout>(Resource.Id.pro_full_name_et);
            emailEt           = view.FindViewById <TextInputLayout>(Resource.Id.pro_email_et);
            locationEt        = view.FindViewById <TextInputLayout>(Resource.Id.pro_loc_et);
            genderRadioGroup  = view.FindViewById <RadioGroup>(Resource.Id.pro_gender_grp);
            genderRadioGroup.SetOnCheckedChangeListener(this);
            continueBtn.Click       += ContinueBtn_Click;
            fabPictureOptions.Click += FabPictureOptions_Click;
            dobEditText.Click       += DobEditText_Click;

            dobEditText.TextChanged         += EditText_TextChanged;
            fullnameEt.EditText.TextChanged += EditText_TextChanged;
            emailEt.EditText.TextChanged    += EditText_TextChanged;
        }