14 lines
276 B
Dart
14 lines
276 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AuthView extends StatefulWidget {
|
|
@override
|
|
_AuthViewState createState() => _AuthViewState();
|
|
}
|
|
|
|
class _AuthViewState extends State<AuthView> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|