http request call done

This commit is contained in:
OnlyPapy98
2025-11-12 16:52:48 +01:00
parent 159837bd6f
commit b1ce91ef20
53 changed files with 1109 additions and 1045 deletions

View File

@@ -89,9 +89,9 @@ public class Login extends Fragment {
prefsHelper = SharedPrefsHelper.getInstance(getContext());
prefsHelper.save("username", binding.userNameInput.getText().toString());
FragmentManager fragmentManager = getParentFragmentManager();
ListOFBets bets = ListOFBets.newInstance(binding.userNameInput.getText().toString());
ListOfReunions reunions = ListOfReunions.newInstance(binding.userNameInput.getText().toString());
fragmentManager.beginTransaction()
.replace(R.id.nav_host_fragment_content_main, bets)
.replace(R.id.nav_host_fragment_content_main, reunions)
.commit();
}
});