Component

AppShell

Flutter implementation of the AppShell component.

Usage

dart
import 'package:refraction_ui/refraction_ui.dart';

class MyAppShellExample extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return AppShell(
      // Add props here
    );
  }
}