5/15/1
This commit is contained in:
24
lib/views/auth/captin/cards/egypt_card.dart
Normal file
24
lib/views/auth/captin/cards/egypt_card.dart
Normal file
@@ -0,0 +1,24 @@
|
||||
import 'package:SEFER/controller/functions/gemeni.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
class EgyptCard extends StatelessWidget {
|
||||
const EgyptCard({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
Get.put(AI());
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('Egypt Card'),
|
||||
),
|
||||
body: GetBuilder<AI>(builder: (controller) {
|
||||
return Center(
|
||||
child: Container(
|
||||
child: Text(
|
||||
controller.responseIdCardDriverEgyptBack['firstName'].toString()),
|
||||
));
|
||||
}),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user