An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

![Screenshot](https://github.com/berkaycatak/flutter_easy_faq/assets/34205493/b26b89c8-d5ee-4c0e-b7c7-6632fe6c4932)

## 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,
);
```