doc : widgets like

1- RSegment
2- row radio
3- Build Row
4- logo widget
This commit is contained in:
2025-10-14 12:33:20 +03:30
parent 0901b45998
commit ba907e2571
10 changed files with 42 additions and 90 deletions

View File

@@ -1,5 +1,4 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:rasadyar_core/core.dart';
import 'logic.dart';
@@ -11,29 +10,18 @@ class TestPage extends StatelessWidget {
Widget build(BuildContext context) {
final TestLogic logic = Get.put(TestLogic());
return Scaffold(body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(18.0),
child: Column(children: [
return Scaffold(
body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(18.0),
child: Column(
spacing: 8,
children: [
Text('buildRow'),
buildRow(
title: "Test Row Item",
value: "Value",
titleLabel: "Title Label",
valueLabel: "Value Label",
titleLabelStyle: AppFonts.yekan14.copyWith(color: Colors.red),
valueLabelStyle: AppFonts.yekan14.copyWith(color: Colors.blue),
titleStyle: AppFonts.yekan16.copyWith(color: Colors.green),
valueStyle: AppFonts.yekan16.copyWith(color: Colors.purple),
],
),
Divider(),
]),
),
),
));
);
}
}