protected override async void OnNavigatedTo(NavigationEventArgs e)
        {
            await WeBallAPI.getNotifications();

            if (WeBallAPI.Success == false)
            {
                return;
            }
            ListNotifs.ItemsSource          = WeBallAPI.notifs.notifications;
            ListFriendsRequests.ItemsSource = WeBallAPI.notifs.requests;
        }