Initial commit: Penyerahan final Source code Tugas Akhir
This commit is contained in:
20
lib/widgets/counter_qna_comment.dart
Normal file
20
lib/widgets/counter_qna_comment.dart
Normal file
@ -0,0 +1,20 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:initial_folder/models/counter_qna_comment_model.dart';
|
||||
|
||||
import '../size_config.dart';
|
||||
import '../theme.dart';
|
||||
|
||||
class CounterQnaComment extends StatelessWidget {
|
||||
const CounterQnaComment({Key? key, required this.counterComment})
|
||||
: super(key: key);
|
||||
|
||||
final String counterComment;
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Text(
|
||||
'${counterComment}',
|
||||
style: secondaryTextStyle.copyWith(
|
||||
fontSize: getProportionateScreenWidth(10), letterSpacing: 0.3),
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user