Category : Network

NetShare Data sharing in local network Demo (Screenshots, Videos) Mobile    Desktop    Video  NetShare-v2.mp4  How to build the project Note: This project is mainly running on the latest Flutter beta channel Run the project as usual flutter run -d <target-platforms> <target-platforms> is all supported Flutter platforms, except Web. Normally, desktop app (macOS, Windows, Linux) will ..

Read more

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 ..

Read more

session Network request result json to dart https://javiercbk.github.io/json_to_dart/ Getting Started Add dependency dependencies: session: ^1.0.3+2 #latest version Example import ‘dart:io’; import ‘package:dio/dio.dart’; import ‘package:flutter/material.dart’; import ‘package:session/session.dart’; export ‘package:session/session.dart’ show Result; Config configAPI(String baseURL) { return Config( baseUrl: baseURL ?? “https://www.httpbin.org/”, // proxy: ‘PROXY localhost:8888’, connectTimeout: 10, receiveTimeout: 10, ); } SessionInterceptorSendHandler _onRequest = (options) async { ..

Read more