Skip to content

Instantly share code, notes, and snippets.

View shanmugam105's full-sized avatar
🎯
Focusing

Shanmugarajeshwaran R shanmugam105

🎯
Focusing
  • Sparkout Tech Solution
  • Coimbatore
View GitHub Profile
@shanmugam105
shanmugam105 / responsive_layout.dart
Created July 16, 2025 09:50
Helper for flutter responsive ui
import 'package:flutter/material.dart';
class ResponsiveLayout extends StatelessWidget {
final Widget mobileBody;
final Widget tabletBody;
final Widget desktopBody;
ResponsiveLayout({
required this.mobileBody,
required this.tabletBody,