doc : widgets like
1- RSegment 2- row radio 3- Build Row 4- logo widget
This commit is contained in:
@@ -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(),
|
||||
|
||||
|
||||
|
||||
|
||||
]),
|
||||
),
|
||||
),
|
||||
));
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user