Skip to content

Instantly share code, notes, and snippets.

View TobiCrackIT's full-sized avatar
🚀
Building

Oluwatobi Oluwatoyin TobiCrackIT

🚀
Building
View GitHub Profile
@TobiCrackIT
TobiCrackIT / flutter_extension_methods.dart
Created July 5, 2023 17:03 — forked from SashaKryzh/flutter_extension_methods.dart
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);