nandi/vflutter_ffipublic Fork 0
7fdf71219e3dd44c76c7be4120ff73a31d6237ce
Commits
Clone
git clone https://git.rickub.com/nandi/vflutter_ffi.git
git clone ssh://git@rickub.com/nandi/vflutter_ffi.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

my_application.h · 21 lines · 451 BC Blame HistoryRaw
Add Flutter example app with Linux runner 7fdf712 nandi 10h ago1#ifndef FLUTTER_MY_APPLICATION_H_
2#define FLUTTER_MY_APPLICATION_H_
3
4#include <gtk/gtk.h>
5
6G_DECLARE_FINAL_TYPE(MyApplication,
7 my_application,
8 MY,
9 APPLICATION,
10 GtkApplication)
11
12/**
13 * my_application_new:
14 *
15 * Creates a new Flutter-based application.
16 *
17 * Returns: a new #MyApplication.
18 */
19MyApplication* my_application_new();
20
21#endif // FLUTTER_MY_APPLICATION_H_