editable_text_widget 0.0.1 copy "editable_text_widget: ^0.0.1" to clipboard
editable_text_widget: ^0.0.1 copied to clipboard

Editable text widget for Flutter.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Center(
          child: EditableTextWidget(
            text: 'This is an example',
            width: 0.8,
            height: 0.1,
            fontSize: 18,
            backgroundColor: Colors.green,
            border: true,
            borderColor: Colors.red,
            borderWidth: 2.0,
            borderRadius: 10.0,
            padding: 10.0,
            textColor: Colors.red,
          ),
        ),
      ),
    );
  }
}
2
likes
140
points
27
downloads

Publisher

verified publishercommoncodebase.org

Weekly Downloads

Editable text widget for Flutter.

Homepage

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on editable_text_widget