dev
dart 27 lines 706 Bytes
Raw
1 import 'package:flutter/material.dart';
2
3 class SettingsVersionCell extends StatelessWidget {
4 SettingsVersionCell({required this.title});
5
6 final String title;
7
8 @override
9 Widget build(BuildContext context) {
10 return Padding(
11 padding: EdgeInsets.only(bottom: 24),
12 child: Row(
13 mainAxisSize: MainAxisSize.max,
14 mainAxisAlignment: MainAxisAlignment.center,
15 children: <Widget>[
16 Text(
17 title,
18 style: Theme.of(context).textTheme.bodySmall!.copyWith(
19 fontWeight: FontWeight.normal,
20 color: Theme.of(context).colorScheme.onSurfaceVariant,
21 ),
22 )
23 ],
24 ),
25 );
26 }
27 }