17 lines
413 B
Dart
17 lines
413 B
Dart
|
|
import 'package:flutter/material.dart';
|
|
|
|
class LockAddressGooglePage extends StatefulWidget {
|
|
const LockAddressGooglePage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<LockAddressGooglePage> createState() => _LockAddressGooglePageState();
|
|
}
|
|
|
|
class _LockAddressGooglePageState extends State<LockAddressGooglePage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Placeholder();
|
|
}
|
|
}
|