feat: add linux support. (#209)

* feat: add linux support.

* chore: update README.md

* bump version for flutter-webrtc.
This commit is contained in:
CloudWebRTC
2023-05-16 10:34:14 +08:00
committed by GitHub
parent 0b8aeeeba1
commit 83f87547e7
11 changed files with 417 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef FLUTTER_MY_APPLICATION_H_
#define FLUTTER_MY_APPLICATION_H_
#include <gtk/gtk.h>
G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION,
GtkApplication)
/**
* my_application_new:
*
* Creates a new Flutter-based application.
*
* Returns: a new #MyApplication.
*/
MyApplication* my_application_new();
#endif // FLUTTER_MY_APPLICATION_H_