flutter_notepad 0.0.3
flutter_notepad: ^0.0.3 copied to clipboard
A Flutter package for a fully functional notepad with local storage, PDF export, and text-to-speech.
example/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_notepad/notepad_widget.dart';
void main() {
runApp(MyApp());
}
/// A simple example app demonstrating the usage of `flutter_notepad`.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Notepad Example',
theme: ThemeData(primarySwatch: Colors.blue),
home: NotepadWidget(),
);
}
}