Skip to content

Commit af28d48

Browse files
committed
update readme
1 parent f3f6725 commit af28d48

File tree

3 files changed

+4
-33
lines changed

3 files changed

+4
-33
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# Flutter Messaging UI
1010

11-
**Flutter Live Score UI** is a sleek and responsive mobile application built using Flutter, designed to deliver live sports scores in real time. This project was created by converting a design crafted in Figma, ensuring that the visual elements are faithfully represented and optimized for performance. The app features a modern UI that provides an engaging and interactive experience for users, with intuitive navigation and smooth transitions. It is intended to serve as both a practical reference for developing live score applications and a demonstration of Flutter's capabilities in creating visually stunning and performant mobile apps. Whether you're tracking your favorite team or following multiple sports events, this app ensures you stay up-to-date with the latest scores in a seamless manner.
11+
*Flutter UI Showcase* is a modern and responsive mobile application built using Flutter, designed to demonstrate visually appealing and high-performance user interfaces. This project was created by converting a design from Figma, ensuring precise visual representation and optimized performance. The app highlights a sleek UI with intuitive navigation and smooth transitions, making it a practical reference for developers aiming to create visually stunning applications. This project showcases Flutter's capabilities in building mobile applications that prioritize aesthetics and performance without compromising user experience.
1212

1313
## 🎨 Design
1414

lib/main.dart

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,6 @@ class MyApp extends StatefulWidget {
1919
class _MyAppState extends State<MyApp> {
2020
ThemeMode themeMode = ThemeMode.light;
2121

22-
// void _updateStatusBar() {
23-
// // Atur gaya status bar berdasarkan mode tema
24-
// final isDark = themeMode == ThemeMode.dark;
25-
// SystemChrome.setSystemUIOverlayStyle(
26-
// SystemUiOverlayStyle(
27-
// statusBarColor: Colors.transparent, // Transparan
28-
// statusBarIconBrightness:
29-
// isDark ? Brightness.light : Brightness.dark, // Ikon
30-
// systemNavigationBarColor:
31-
// isDark ? Colors.black : Colors.white, // Warna navigasi
32-
// systemNavigationBarIconBrightness:
33-
// isDark ? Brightness.light : Brightness.dark, // Ikon navigasi
34-
// statusBarBrightness:
35-
// isDark ? Brightness.dark : Brightness.light, // Untuk perangkat iOS
36-
// ),
37-
// );
38-
// }
39-
4022
@override
4123
Widget build(BuildContext context) {
4224
return GetMaterialApp(

lib/screen/group_chats.dart

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ class GroupChatsPage extends StatefulWidget {
1212
}
1313

1414
class _GroupChatsPageState extends State<GroupChatsPage> {
15-
final ScrollController _scrollController =
16-
ScrollController(); // Controller untuk ListView
15+
final ScrollController _scrollController = ScrollController();
1716

1817
List<Map<String, dynamic>> list = [
1918
{
@@ -165,16 +164,6 @@ class _GroupChatsPageState extends State<GroupChatsPage> {
165164
attachment: e['attachment'],
166165
))
167166
.toList(),
168-
// const [
169-
// // LEFT
170-
// AppContentChat(isLeft: true),
171-
// AppContentChat(isLeft: false),
172-
// AppContentChat(isLeft: true),
173-
// AppContentChat(isLeft: true),
174-
175-
// // RIGHT
176-
// AppContentChat(isLeft: false),
177-
// ],
178167
),
179168
const Positioned(
180169
bottom: 0, left: 0, right: 0, child: AppInputMessage())
@@ -484,14 +473,14 @@ class AppMessageContent extends StatelessWidget {
484473
children: [
485474
Text(
486475
profile['name'],
487-
style: TextStyle(
476+
style: const TextStyle(
488477
color: Color(0xFFF2994A),
489478
fontSize: 12,
490479
),
491480
),
492481
Text(
493482
profile['is_admin'] ? 'admin' : '',
494-
style: TextStyle(
483+
style: const TextStyle(
495484
color: Color(0xFFA1A1BC),
496485
fontSize: 12,
497486
),

0 commit comments

Comments
 (0)