text_style_editor

Creator: coderz1093

Last updated:

Add to Cart

Description:

text style editor

TextStyleEditor #


Text style editor widget for flutter
Show some ❤️ and star the repo to support the project
Features #

Edit TextStyle
Change TextAlign
Taggle Caps lock

Screenshot #


Installation #
Add text_style_editor: ^1.1.1 to your pubspec.yaml dependencies. And import it:
import 'package:text_style_editor/text_style_editor.dart';
copied to clipboard
How to use #
Simply create a TextStyleEditor widget, and pass the required params:
Params

fonts (List<String>): List of the font families that you want to use in the Editor.

required


textStyle (TextStyle): The initial text style that you want to edit.

required


textAlign (TextAlign): The initial text align that you want to change.

required


paletteColors (List<Color>): List of the colors that you want to use in the Editor's palette.

optional


onTextAlignEdited (Function(TextStyle)): Callback will be called every time textStyle has changed.

optional


onTextStyleEdited (Function(TextAlign)): Callback will be called every time textAlign has changed.

optional


onCpasLockTaggle (Function(bool)): Callback will be called every time caps lock has changed to off or on.

optional


onToolbarActionChanged (Function(EditorToolbarAction)): Callback will be called every time editor's tool has changed.

optional



Example
TextStyleEditor(
fonts: fonts,
textStyle: textStyle,
textAlign: textAlign,
paletteColors: paletteColors,
onTextAlignEdited: (align) {
setState(() {
textAlign = align;
});
},
onTextStyleEdited: (style) {
setState(() {
textStyle = textStyle.merge(style);
});
},
onCpasLockTaggle: (caps) {
// Uppercase or lowercase letters
},
)
copied to clipboard
To see complete example: examples
MIT License #
Copyright (c) 2020 Mehdi Zarepour

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.