1234567891011121314151617181920212223242526272829303132333435363738 |
- import 'package:flutter/material.dart';
- class ExamTitle extends StatelessWidget {
- const ExamTitle({
- super.key,
- required this.titleType,
- this.label,
- });
- final String? label;
- final String titleType;
- @override
- Widget build(BuildContext context) {
- return Container(
- padding: const EdgeInsets.only(
- top: 20,
- left: 30,
- bottom: 15,
- ),
- child: RichText(
- text: TextSpan(
- text: label ?? '',
- style: const TextStyle(
- fontSize: 25,
- color: Colors.black,
- ),
- children: [
- TextSpan(
- text: titleType,
- style: const TextStyle(fontSize: 25, color: Colors.grey),
- ),
- ],
- ),
- ),
- );
- }
- }
|