Skip to content

Instantly share code, notes, and snippets.

View AliEsmaeil's full-sized avatar

Ali Esmaeil AliEsmaeil

  • Egypt
View GitHub Profile
@AliEsmaeil
AliEsmaeil / main.dart
Last active September 12, 2024 11:50
how to know whether bottom sheet is open or not through scaffold key?
class SignInScreen extends StatelessWidget {
static const routeName = '/SignIn';
final ScrollController scrollController = ScrollController();
final GlobalKey<ScaffoldState> scaffoldKey = GlobalKey<ScaffoldState>();
SignInScreen({super.key});
@override