Skip to content

Instantly share code, notes, and snippets.

View gianlucaschoefer's full-sized avatar

Gianluca Schoefer gianlucaschoefer

View GitHub Profile
@gianlucaschoefer
gianlucaschoefer / main.dart
Created May 20, 2025 07:30
NavigationToolbar-like Row Example with 2 optional Leading + Trailing
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
void main() {
runApp(
ChangeNotifierProvider(
create: (context) => StackData(),
child: const MyApp(),
),
);