safe_text

Creator: coderz1093

Last updated:

0 purchases

safe_text Image
safe_text Images
Add to Cart

Description:

safe text

Safe Text is a Flutter package designed to filter out offensive and abusive language from text inputs within your application. With its easy-to-use interface, you can integrate powerful profanity filtering capabilities to ensure a safer and more inclusive user experience. Simply integrate BadWordFilter into your Flutter project to automatically detect and replace inappropriate language with asterisks (*) or customize it to suit your application's needs.
Features #

Profanity Filtering: Automatically detects and filters out offensive language from text inputs.
Customizable: Customize the filtering behavior and replacement characters to suit your application's requirements.
Easy Integration: Simple integration with Flutter projects, making it seamless to implement the profanity filtering functionality.
Enhanced User Experience: Promotes a safer and more inclusive user experience by removing inappropriate language from text inputs.

Getting started #
To use the SafeText class for filtering out bad words from your text inputs, follow these steps:


Add the BadWordFilter package to your pubspec.yaml file:
dependencies:
safe_text: ^0.0.2 # Replace with the latest version
copied to clipboard


Import the package in your Dart file:
import 'package:safe_text/safe_text.dart';
copied to clipboard


Use the filterText method to filter out bad words from your text inputs. Here's an example of how to use it:
String filteredText = SafeText.filterText(
text: "Your input text here",
extraWords: ["extra", "bad", "words"],
excludedWords: ["exclude", "these", "words"],
useDefaultWords: true,
fullMode: true,
obscureSymbol: "*",
);
copied to clipboard


Parameters:

text (required): The text to be filtered.
extraWords (optional): List of extra bad words to filter out (defaults to the standard list of bad words).
excludedWords (optional): List of bad words that should not be filtered out.
useDefaultWords (optional): Whether to use the default list of bad words in addition to the extra words (defaults to true).
fullMode (optional): Whether to fully filter out the bad word or only obscure the middle part, leaving the first and last characters visible (defaults to true).
obscureSymbol (optional): The symbol used to obscure the bad word (defaults to *).



Enjoy a safer and more inclusive user experience by filtering out offensive language from your application's text inputs!


Example #
Check out the example below to see how to integrate the SafeText class into your Flutter app:
import 'package:flutter/material.dart';
import 'package:safe_text/safe_text.dart'; // Import the safe_text package

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

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

@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'BadWordFilter Demo',
home: SafeTextDemo(), // Set the home to SafeTextDemo widget
);
}
}

class SafeTextDemo extends StatefulWidget {
const SafeTextDemo({super.key});

@override
State<SafeTextDemo> createState() => _SafeTextDemoState();
}

class _SafeTextDemoState extends State<SafeTextDemo> {
String _textInput = ''; // Variable to store user input text

// Method to filter out bad words from the user input
void _filterText() {
setState(() {
// Call the filterText method from the SafeText class
_textInput = SafeText.filterText(
text: _textInput, // Pass the user input text
extraWords: [
'extra',
'bad',
'words'
], // Additional bad words to filter
excludedWords: [
'exclude',
'these',
'words'
], // Words to be excluded from filtering
useDefaultWords: true, // Whether to use the default list of bad words
fullMode: true, // Whether to fully filter out the bad word or only obscure the middle part
obscureSymbol: '*', // Symbol used to obscure the bad word
);
});
}

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('BadWordFilter Demo'),
),
body: Center(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
TextField(
onChanged: (value) {
setState(() {
_textInput = value; // Update the user input text
});
},
decoration: const InputDecoration(
hintText: 'Enter your text here...', // Placeholder text for the TextField
),
),
const SizedBox(height: 20),
ElevatedButton(
onPressed: _filterText, // Call _filterText method when button is pressed
child: const Text('Filter Bad Words'), // Button text
),
const SizedBox(height: 20),
const Text(
'Filtered Text:', // Text to display above the filtered text
style: TextStyle(fontWeight: FontWeight.bold),
),
Text(_textInput), // Display the filtered text
],
),
),
),
);
}
}

copied to clipboard
Contributing #
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Authors #
We are Ronit Rameja and Kunal Prajapat, the developers behind this Flutter package. We're passionate about creating tools that make development easier and more enjoyable. If you have any questions, suggestions, or feedback, feel free to reach out. You can find us on LinkedIn Ronit and Kunal.

License

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

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator