Flipper Zero Firmware
Loading...
Searching...
No Matches
one_shot_animation_view.h
1#pragma once
2
3#include <furi.h>
4#include <gui/view.h>
5#include <stdint.h>
6
7typedef void (*OneShotInteractCallback)(void*);
8typedef struct OneShotView OneShotView;
9
10OneShotView* one_shot_view_alloc(void);
11void one_shot_view_free(OneShotView* view);
12void one_shot_view_set_interact_callback(
13 OneShotView* view,
14 OneShotInteractCallback callback,
15 void* context);
16void one_shot_view_start_animation(OneShotView* view, const Icon* icon);
17View* one_shot_view_get_view(OneShotView* view);
Definition icon_i.h:9
Definition one_shot_animation_view.c:11
Definition view_i.h:16
GUI: View API.