authenticate.dart 400 B

1234567891011121314151617
  1. import 'package:flutter/material.dart';
  2. import 'package:putra_go/screens/passenger/authenticate/userLogin.dart';
  3. class Authenticate extends StatefulWidget {
  4. @override
  5. _AuthenticateState createState() => _AuthenticateState();
  6. }
  7. class _AuthenticateState extends State<Authenticate> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Container(
  11. child: userLogin(),
  12. );
  13. }
  14. }