https://github.com/berkaycatak/flutter_easy_faq
Prepare your animated faq list easily.
https://github.com/berkaycatak/flutter_easy_faq
faq faqs flutter flutter-package
Last synced: 4 months ago
JSON representation
Prepare your animated faq list easily.
- Host: GitHub
- URL: https://github.com/berkaycatak/flutter_easy_faq
- Owner: berkaycatak
- License: mit
- Created: 2023-12-04T13:16:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-04T08:35:26.000Z (over 2 years ago)
- Last Synced: 2025-10-23T03:41:22.485Z (8 months ago)
- Topics: faq, faqs, flutter, flutter-package
- Language: Dart
- Homepage:
- Size: 7.81 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README

## Features
Prepare your animated faq list easily.
## Installation
Add package to the the pubspec.yaml.
```dart
flutter_easy_faq:
```
Import the package.
```dart
import 'package:flutter_easy_faq/easy_faq.dart';
```
## Usage
```dart
EasyFaq(
question: "question?",
answer: "answer.",
),
```
## Properties
```dart
required String question;
required String answer;
TextStyle? questionTextStyle;
TextStyle? anserTextStyle;
Duration? duration = const Duration(milliseconds: 120);
Widget? expandedIcon;
Widget? collapsedIcon;
Color? backgroundColor;
BorderRadiusGeometry? borderRadius;
EdgeInsetsGeometry? padding = const EdgeInsets.symmetric(
horizontal: 16,
vertical: 10,
);
```