name ui fix and removed parts of the app that are not ready

This commit is contained in:
Arseni
2026-02-05 02:42:00 +03:00
parent 509af9bc5c
commit 0ce90eef21
9 changed files with 199 additions and 66 deletions

View File

@@ -0,0 +1,24 @@
import 'package:flutter/material.dart';
class AccountNameSingleLineText extends StatelessWidget {
const AccountNameSingleLineText({
super.key,
required this.text,
required this.style,
});
final String text;
final TextStyle? style;
@override
Widget build(BuildContext context) {
return Text(
text,
maxLines: 1,
softWrap: false,
overflow: TextOverflow.ellipsis,
style: style,
);
}
}