Skip to content

Commit

Permalink
changes names
Browse files Browse the repository at this point in the history
  • Loading branch information
D3bi7 committed Sep 17, 2024
1 parent 333afde commit 98dc81b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/ui/list_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ class ResultListItem extends StatelessWidget {

@override
Widget build(BuildContext context) {
final pointsStyle = TextStyle(
final pointValueStyle = TextStyle(
fontWeight: FontWeight.w700,
fontFamily: FontFamily.roboto,
fontSize: TextSize.mediumTitle,
color: Colors.white,
);

final pktStyle = TextStyle(
final pointDescriptionStyle = TextStyle(
fontWeight: FontWeight.w700,
fontFamily: FontFamily.roboto,
fontSize: 9,
Expand Down Expand Up @@ -47,12 +47,12 @@ class ResultListItem extends StatelessWidget {
children: [
Text(
'${searchResult.companies?.first.plScore ?? 0}',
style: pointsStyle,
style: pointValueStyle,
textAlign: TextAlign.center,
),
Text(
'pkt',
style: pktStyle,
style: pointDescriptionStyle,
textAlign: TextAlign.center,
),
],
Expand Down

0 comments on commit 98dc81b

Please sign in to comment.