laravel_auth_slate 1.0.24 copy "laravel_auth_slate: ^1.0.24" to clipboard
laravel_auth_slate: ^1.0.24 copied to clipboard

Laravel authentication package, creates a login, signup and api service using Sanctum.

example/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Nylo Slate Package',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Nylo'),
    );
  }
}

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

  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Text("Nylo Slate Package"),
      ),
    );
  }
}
2
likes
130
pub points
61%
popularity
screenshot

Publisher

unverified uploader

Laravel authentication package, creates a login, signup and api service using Sanctum.

Homepage
Repository (GitHub)
View/report issues

Topics

#laravel-auth #laravel-ui #laravel-flutter

Documentation

Documentation
API reference

Funding

Consider supporting this project:

github.com

License

MIT (LICENSE)

Dependencies

args, flutter, nylo_support

More

Packages that depend on laravel_auth_slate