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

A highly customizable Flutter DOCX Viewer and Editor package supporting Android, iOS, and macOS.

example/lib/main.dart

import 'package:docx_viewer_plus/docx_viewer_plus.dart';
import 'package:flutter/material.dart';
import 'home_screen.dart';

void main() {
  runApp(const DocxViewerApp());
}

class DocxViewerApp extends StatelessWidget {
  const DocxViewerApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'DOCX Viewer',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorSchemeSeed: const Color(0xFF1565C0),
        useMaterial3: true,
      ),
      home: const HomeScreen(
        config: DocxViewerConfig(
            isReadOnly: false, toolbarPosition: ToolbarPosition.bottom),
      ),
    );
  }
}
2
likes
140
points
0
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A highly customizable Flutter DOCX Viewer and Editor package supporting Android, iOS, and macOS.

License

MIT (license)

Dependencies

archive, crypto, cupertino_icons, file_picker, flutter, google_fonts, path, path_provider, share_plus, webview_flutter, webview_flutter_android, webview_flutter_wkwebview, xml

More

Packages that depend on docx_viewer_plus