22 lines
597 B
Dart
22 lines
597 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:tanami_app/features/securePin/presentation/widgets/pin_keypad_section.dart';
|
|
import 'package:tanami_app/features/securePin/presentation/widgets/pin_top_section.dart';
|
|
|
|
class PinLayout extends StatelessWidget {
|
|
final String fromScreen;
|
|
const PinLayout({super.key, required this.fromScreen});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
body: ListView(
|
|
children: [
|
|
PinTopSection(fromScreen: fromScreen),
|
|
PinKey(
|
|
fromScreen: fromScreen,
|
|
),
|
|
],
|
|
));
|
|
}
|
|
}
|