Skip to content

Instantly share code, notes, and snippets.

View aragrevo's full-sized avatar
:octocat:
Ready

Eduardo Vergara aragrevo

:octocat:
Ready
View GitHub Profile
@SashaKryzh
SashaKryzh / flutter_extension_methods.dart
Last active April 30, 2024 05:54
List of my favorite extension methods in Flutter.
import 'package:flutter/material.dart';
extension BuildContextExtensions on BuildContext {
ThemeData get theme => Theme.of(this);
TextTheme get textTheme => theme.textTheme;
ColorScheme get colorScheme => theme.colorScheme;
DefaultTextStyle get defaultTextStyle => DefaultTextStyle.of(this);