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/foundation.dart'; | |
import 'package:flutter/material.dart'; | |
abstract interface class HighlighteAspectConstraints {} | |
enum HighlighteState { | |
idle, | |
highlighte; | |
} |
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
class InputRegistrationFormWidget extends StatefulWidget { | |
const InputRegistrationFormWidget( | |
{super.key, required this.validateNotifier, this.exceptions}); | |
final ValueNotifier<bool> validateNotifier; | |
final Stream<Iterable<FieldInvalidException>>? exceptions; | |
@override | |
State<InputRegistrationFormWidget> createState() => |
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
class DiscountBar extends StatefulWidget { | |
const DiscountBar({super.key, required this.discount}); | |
final DiscountModel discount; | |
@override | |
State<DiscountBar> createState() => _DiscountBarState(); | |
} | |
class _DiscountBarState extends State<DiscountBar> |
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:collection/collection.dart'; | |
import 'package:flutter/material.dart'; | |
typedef DelegateAccess<D extends ScopeDelegate> = D Function( | |
BuildContext, { | |
bool listen, | |
}); | |
abstract class Scope extends StatefulWidget { | |
const Scope({Key? key, required Widget child}) |
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'; | |
import 'package:flutter/rendering.dart'; | |
import 'package:flutter/scheduler.dart'; | |
import 'package:flutter/foundation.dart'; | |
class Sticky extends StatefulWidget { | |
const Sticky( | |
{super.key, required this.child, required this.content, this.visibility}); | |
final Widget child; |