flutter_monaco 1.0.0 copy "flutter_monaco: ^1.0.0" to clipboard
flutter_monaco: ^1.0.0 copied to clipboard

Integrate Monaco Editor (VS Code's editor) in Flutter apps. Features 100+ languages, syntax highlighting, themes, and full API.

example/lib/main.dart

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

void main() {
  runApp(
    MaterialApp(
      showSemanticsDebugger: false,
      debugShowCheckedModeBanner: false,
      title: 'Flutter Monaco',
      theme: ThemeData.light(),
      darkTheme: ThemeData.dark(),
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Monaco Editor'),
        ),
        body: const SafeArea(
          child: MonacoEditor(
            showStatusBar: true,
          ),
        ),
      ),
    ),
  );
}
11
likes
160
points
176
downloads

Publisher

verified publishertomars.tech

Weekly Downloads

Integrate Monaco Editor (VS Code's editor) in Flutter apps. Features 100+ languages, syntax highlighting, themes, and full API.

Repository (GitHub)
View/report issues

Topics

#vscode #monaco #editor #markdown #ide

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

flutter, flutter_helper_utils, freezed_annotation, path, path_provider, webview_flutter, webview_windows

More

Packages that depend on flutter_monaco