You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This bundle provide the following custom form types:
4
+
5
+
## SwitchType
6
+
7
+
The `SwitchType` type has the same behavior as the `CheckboxType` type and allows to display a checkbox as a [toggle switch](https://flowbite.com/docs/components/forms/#toggle-switch):
8
+
9
+
```php
10
+
namespace App\Form;
11
+
12
+
use TalesFromADev\FlowbiteBundle\Form\Type\SwitchType
13
+
14
+
class TemplateType extends AbstractType
15
+
{
16
+
public function buildForm(FormBuilderInterface $builder, array $options): void
0 commit comments