CodeMelted - Flutter Module

UNDER DEVELOPMENT - ONLY ALPHA MODULE AT THIS TIME AS DESIGN IS FLESHED OUT.

Welcome to the CodeMelted - Flutter Module project. This project aims to provide a developer with the ability to build client applications regardless of deployment target. Those deployment targets include desktop, mobile, and web. By leveraging the CodeMelted - Developer identified use cases, you can be assured to building a powerful native application.

GETTING STARTED

Perform the following to pull the codemelted_flutter module into your project.

dependencies:
  codemelted_flutter:
    git:
      url: https://github.com/CodeMelted/codemelted_developer.git
      ref: main
      # Or by tagged version
      # ref: codemelted_flutter_X.Y.Z
      path: codemelted_flutter

USAGE

The following examples represent the implementation of the CodeMelted - Developer Cross Platform Module identified use cases.

Async

UNDER DEVELOPMENT

Audio

UNDER DEVELOPMENT

Console

Use case not applicable to this module.

Database

UNDER DEVELOPMENT

Disk

UNDER DEVELOPMENT

Firebase

UNDER DEVELOPMENT

Game

UNDER DEVELOPMENT

Hardware

UNDER DEVELOPMENT

JSON

UNDER DEVELOPMENT

Logger

// Import it.
import 'package:codemelted_flutter/codemelted_logger.dart';

// Set it up
codemelted_logger.level = CLogLevel.warning;
codemelted_logger.onLogEvent = (rec) async {
  // Handle the CLogRecord object.
};

// Log stuff
codemelted_logger.debug(data: 'debug', stackTrace: StackTrace.current);
codemelted_logger.info(data: 'info', stackTrace: StackTrace.current);
codemelted_logger.warning(data: 'warning', stackTrace: StackTrace.current);
codemelted_logger.error(data: 'error', stackTrace: StackTrace.current);

Math

UNDER DEVELOPMENT

Network

UNDER DEVELOPMENT

Runtime

UNDER DEVELOPMENT

Storage

UNDER DEVELOPMENT

UI

UNDER DEVELOPMENT

CHANGE LOG

LICENSE

MIT License

© 2024 Mark Shaffer

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Libraries

codemelted_async
Provides the ability perform asynchronous programming with flutter in a web environment.
codemelted_audio
UNDER DEVELOPMENT
codemelted_console
Not applicable to this module.
codemelted_database
UNDER DEVELOPMENT
codemelted_disk
UNDER DEVELOPMENT
codemelted_firebase
UNDER DEVELOPMENT
codemelted_game
UNDER DEVELOPMENT
codemelted_hardware
UNDER DEVELOPMENT
codemelted_json
Provides the extensions necessary to take full advantage of the JSON and validating your data.
codemelted_logger
Provides a basic logging facility to report issues to the browser console along with post processing of events. Also hooks into the Flutter Engine to catch and report any issues un-resolved.
codemelted_math
A collection of mathematical formulas you probably will never need to calculate.
codemelted_network
Provides the collection of all network related items from the Browser APIs minus webrtc. Any communication you need to make with a backend server are handled via this library.
codemelted_runtime
Collection of items related to the web runtime for the flutter app not covered by any of the other modules specific use case.
codemelted_storage
Provides the hooks for working with the different browser storage methods that don't require a full on database.
codemelted_ui
Collection of flutter widgets utilized within a Single Page Application paradigm.