Files
rasadyar_application/lib/presentation/pages/test/view.dart

29 lines
566 B
Dart
Raw Normal View History

2025-10-13 16:30:43 +03:30
import 'package:flutter/material.dart';
import 'package:rasadyar_core/core.dart';
import 'logic.dart';
class TestPage extends StatelessWidget {
const TestPage({super.key});
2025-10-13 16:30:43 +03:30
@override
Widget build(BuildContext context) {
// ignore: unused_local_variable
2025-10-13 16:30:43 +03:30
final TestLogic logic = Get.put(TestLogic());
return Scaffold(
body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(18.0),
child: Column(
spacing: 8,
children: [
2025-10-13 16:30:43 +03:30
],
2025-10-13 16:30:43 +03:30
),
),
2025-10-13 16:30:43 +03:30
),
);
2025-10-13 16:30:43 +03:30
}
}