firebase_phone_verify_ui 0.0.1 copy "firebase_phone_verify_ui: ^0.0.1" to clipboard
firebase_phone_verify_ui: ^0.0.1 copied to clipboard

outdated

A new flutter plugin project.

example/lib/main.dart

import 'package:firebase_phone_verify_ui_example/login_page.dart';
import 'package:flutter/material.dart';
import 'package:firebase_phone_verify_ui/firebase_phone_verify_ui.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: LoginPage()
    );
  }
}