mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
* Add simplistic editor to samples * Toggle styles fix * update name * Add to CI and dependabot * update minimum dart sdk * fix pubspec * update README * Update README * Add shift + arrow key selection and copy/paste keyboard actions * Update README.md * copy edits to readme includes a sentence in each layer description whose accuracy I still need to verify * update pubspec * update pubspec.lock * Fix bug with disabling expansion of replacement when cursor is at edge of replacement Co-authored-by: Renzo Olivares <roliv@google.com> Co-authored-by: Craig Labenz <craig.labenz@gmail.com>
19 lines
388 B
C
19 lines
388 B
C
#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_
|