This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'theme.dart'; | |
.. | |
class MyApp extends StatelessWidget { | |
const MyApp({super.key}); | |
@override | |
Widget build(BuildContext context) { | |
const basilTheme = BasilTheme(); | |
return MaterialApp.router( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* ... | |
* | |
* @OA\Schema( | |
* schema="CategoryPost", | |
* type="object", | |
* ... | |
* | |
* @OA\Property( | |
* type="object", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class MultiFloatingButton extends StatefulWidget { | |
@override | |
_MultiFloatingButtonState createState() => _MultiFloatingButtonState(); | |
} | |
class _MultiFloatingButtonState extends State<MultiFloatingButton> { | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class EventForm extends StatefulWidget { | |
@override | |
_EventFormState createState() => _EventFormState(); | |
} | |
class _EventFormState extends State<EventForm> { | |
static GlobalKey<FormState> _eventformKey = GlobalKey<FormState>(); |