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

28 lines
546 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({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
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
}
}