Files
rasadyar_application/lib/presentation/pages/test/view.dart
mr.mojtaba ba907e2571 doc : widgets like
1- RSegment
2- row radio
3- Build Row
4- logo widget
2025-10-14 12:33:20 +03:30

28 lines
546 B
Dart

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: [
],
),
),
),
);
}
}