Languages: English | Brazilian Portuguse
Access most used properties in your BuildContext instance.
This package relies on Dart's extension to provide easy access for the most used properties and functions that depends on the BuildContext instance.
I update this package frequently to add more extensions, bellow you can see the currently available extensions in the latest version.
-
context.mediaQuerySize -
context.orientation -
context.mediaQueryPadding -
context.alwaysUse24HourFormat -
context.devicePixelRatio -
context.platformBrightness -
context.textScaleFactor -
context.isLandscape -
context.isPortrait -
context.mediaQueryViewPadding -
context.mediaQueryViewInsets -
context.mediaQueryShortestSide -
context.isPhone -
context.isTablet -
context.isSmallTablet -
context.isLargeTablet
context.push()context.pop()context.canPop()context.pushNamed()context.popUntil()
context.themecontext.textThemecontext.primaryTextThemecontext.accentTextThemecontext.bottomAppBarThemecontext.bottomSheetThemecontext.appBarThemecontext.backgroundColorcontext.primaryColorcontext.buttonColorcontext.scaffoldBackgroundColorcontext.platformcontext.isAndroidcontext.isIOScontext.isWindowscontext.isMacOScontext.isLinuxcontext.isFuchsiacontext.headline1context.headline2context.headline3context.headline4context.headline5context.headline6context.subtitle1context.bodyText1context.bodyText2context.captioncontext.buttoncontext.subtitle2context.overline
Note: those must be called in the context of a Scaffold widget otherwise you might have errors.
context.openDrawer()context.openEndDrawer()context.showSnackBar()context.hideCurrentSnackBar()context.removeCurrentSnackBar()context.showBottomSheet()
Note: those must be called in the context of a Scaffold widget otherwise you might have errors.
context.form.validate()context.form.reset()context.form.save()
-
context.focusScope.hasFocus -
context.focusScope.isFirstFocus -
context.focusScope.canRequestFocus -
context.focusScope.hasPrimaryFocus -
context.focusScope.unfocus() -
context.focusScope.nextFocus() -
context.focusScope.requestFocus() -
context.focusScope.previousFocus() -
context.focusScope.setFirstFocus() -
context.focusScope.consumeKeyboardToken() -
context.closeKeyboard()
context.modalRoutecontext.routeSettings
Add it in your pubspec.yaml:
dependencies:
build_context: ^3.0.0Import it where you want to use it e.g, in your widget's file.
import "package:build_context/build_context.dart";Here is a usage example:
import 'package:flutter/material.dart';
import "package:build_context/build_context.dart";
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: context.scaffoldBackgroundColor, // There is no Theme.of(context)
body: Center(
child: GestureDetector(
onTap: () => context.pushNamed('/detailsPage'), // we use only context not Navigator.of(context)
child: Text(
'Press Me',
style: context.primaryTextTheme.title, // we use only context not Theme.of(context)
),
),
),
);
}
}You liked this package? then give it a star. If you want to help then:
- Start this repository
- Send a Pull Request with new features
- Share this package
- Create issues if you find a Bug or want to suggest something