New Example - Platform Adaptive Example (#121)

* Adding Platform Adaptive Example

* Adding screenshots
This commit is contained in:
Bryce Cole
2022-10-22 14:13:07 -04:00
committed by GitHub
parent 1564ccdff2
commit b0d917b05a
131 changed files with 4475 additions and 0 deletions

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_