-
Notifications
You must be signed in to change notification settings - Fork 433
Replies: 1 comment · 3 replies
-
You'll have to give us more info if you want some help. Please open a bug with all the required details |
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1
-
private async void DeleteButton_OnClicked(object? sender, EventArgs e)
{
SetPageUiElementEnable(false);
await EnableDeletePanel(true);
}
private void SetPageUiElementEnable(bool value)
{
DescriptionEditor.IsEnabled = value;
SendCommandSwitch.IsEnabled = value;
VisibleCommandSwitch.IsEnabled = value;
DeleteButton.IsEnabled = value;
CancelButton.IsEnabled = value;
UpdateButton.IsEnabled = value;
}
private async Task EnableDeletePanel(bool value)
{
if (value)
{
RootDeletePanel.TranslationY = -650;
RootDeletePanel.IsVisible = true;
await RootDeletePanel.TranslateTo(0, 0, 1000, Easing.SinIn);
return;
}
await RootDeletePanel.TranslateTo(0, -650, 1000, Easing.SinOut);
RootDeletePanel.IsVisible = false;
} 2025-04-20.17-55-38.mp4when i am press the "DELETE" button it is throwing out of memory error, after out of memory error if i try to open the application in LogCat this error is throwing and application is not opening. |
Beta Was this translation helpful? Give feedback.
All reactions
-
2025-04-20.18-03-13.mp4if i try to open the application again it is throwing error like this in logcat. |
Beta Was this translation helpful? Give feedback.
All reactions
-
Please open an issue rather than doing this in a discussion |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
All reactions