Site icon Flutter Packages | Pub dev Packages – Flutter Mobile App World

gceditor is a client/server application for creating a persistent data

gceditor


gceditor is a client/server application for creating a persistent data of an application (config/model). It can generate json, c# files for the model which makes it very useful for c#-based applications/games.

The application is written in dart (flutter) and contains both the backend and frontend logic. The client is available as a native desktop application and a web application.

It does not require to setup any complex environment because it stores data in json files so it should fit small and medium projects.

Main Screen

Features

	GceditorJsonParser.Parse(
		_getConfigText(),
		JsonConvert.DeserializeObject<GceditorJsonParser.JsonRoot>,
		new ConfigRoot()
	);

Screenshots

Usage

Binaries from the Releases section

Latest binaries are available in Releases section here https://github.com/kennelken/gceditor_fl

From the source code

To build the application from the source code you need:

	// windows
	flutter config --enable-windows-desktop
	flutter build windows --release

	// linux
	sudo apt install clang libgtk-3-dev ninja-build -y
	flutter config --enable-linux-desktop
	flutter build linux --release

	// macos
	flutter config --enable-macos-desktop
	flutter build macos --release

	// any OS
	flutter build web --release

Download this app source code on GitHub

https://github.com/kennelken/gceditor_fl
Exit mobile version