flutter_fluid_markdown

A Flutter plugin to render Markdown with a fluid and beautiful user interface.

Features

This package is currently a placeholder and does not yet have any features. The goal is to provide a highly customizable and performant Markdown renderer for Flutter.

Getting Started

This project is under active development. To use this package, add flutter_fluid_markdown as a dependency in your pubspec.yaml file.

dependencies:
  flutter_fluid_markdown: ^0.0.1

Usage

Once the package is developed, you will be able to use it like this (example API):

import 'package:flutter/material.dart';
import 'package:flutter_fluid_markdown/flutter_fluid_markdown.dart';

class MyMarkdownScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Fluid Markdown'),
      ),
      body: FluidMarkdown(
        data: '# Hello, Fluid Markdown!',
      ),
    );
  }
}

Contributing

Contributions are welcome! Please feel free to open an issue or submit a pull request.


This is a placeholder package. The actual implementation is not yet available.