scaffold_ui 1.1.3 copy "scaffold_ui: ^1.1.3" to clipboard
scaffold_ui: ^1.1.3 copied to clipboard

Authentication package for Flutter. Scaffold Supabase, Firebase, Laravel, and more.

example/main.dart

import 'package:flutter/material.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Scaffold UI Package',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Nylo'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: const Center(
        child: Text("Hello World"),
      ),
    );
  }
}
1
likes
150
pub points
72%
popularity
screenshot

Publisher

verified publishernylo.dev

Authentication package for Flutter. Scaffold Supabase, Firebase, Laravel, and more.

Homepage
Repository (GitHub)
View/report issues

Topics

#scaffold-ui #laravel #supabase

Documentation

Documentation
API reference

Funding

Consider supporting this project:

github.com

License

MIT (license)

Dependencies

args, dart_console, flutter, nylo_support

More

Packages that depend on scaffold_ui