File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# App Store
2- <i >Beta 1.1x </i >
2+ <i >Beta 1.2x </i >
33
44## Screenshots
5- <div align =" center " ><img src =" https://i.imgur.com/1K6zpXc .png " ></div >
5+ <div align =" center " ><img src =" https://i.imgur.com/yeg2OZH .png " ></div >
66-
7- <div align =" center " ><img src =" https://i.imgur.com/03JzDaY .png " ></div >
7+ <div align =" center " ><img src =" https://i.imgur.com/BN2WK8g .png " ></div >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Future<void> main() async {
1616 );
1717
1818 windowManager.waitUntilReadyToShow (windowOptions, () async {
19- await windowManager.setTitle ('Central de Programas ' );
19+ await windowManager.setTitle ('Tiger Store ' );
2020 await windowManager.show ();
2121 await windowManager.focus ();
2222 });
Original file line number Diff line number Diff line change 11import 'package:app_store/src/modules/applications/applications_view.dart' ;
2- import 'package:app_store/src/modules/discovery/discovery_view.dart' ;
32import 'package:app_store/src/modules/installed/installed_view.dart' ;
43import 'package:app_store/src/widgets/header.dart' ;
54import 'package:flutter/material.dart' ;
@@ -29,7 +28,7 @@ class _MainViewState extends State<MainView> with WindowListener {
2928 Widget build (BuildContext context) {
3029 return DefaultTabController (
3130 initialIndex: 0 ,
32- length: 3 ,
31+ length: 2 ,
3332 child: Scaffold (
3433 appBar: HeaderWidget (
3534 windowManager: windowManager,
@@ -41,7 +40,7 @@ class _MainViewState extends State<MainView> with WindowListener {
4140 width: MediaQuery .of (context).size.width,
4241 height: MediaQuery .of (context).size.height,
4342 child: const TabBarView (children: [
44- DiscoveryView (),
43+ // DiscoveryView(),
4544 ApplicationsMainView (),
4645 InstalledView (),
4746 ]),
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class MenuTab extends StatelessWidget implements PreferredSizeWidget {
1313}
1414
1515Map <int , Widget > _menu = {
16- 0 : const Tab (icon: Icon (Icons .explore), text: "Descubra" ),
17- 1 : const Tab (icon: Icon (Icons .shopping_bag), text: "Programas" ),
18- 2 : const Tab (icon: Icon (Icons .cloud_download_rounded), text: "Instalados" ),
16+ // 0: const Tab(icon: Icon(Icons.explore), text: "Descubra"),
17+ 0 : const Tab (icon: Icon (Icons .shopping_bag), text: "Programas" ),
18+ 1 : const Tab (icon: Icon (Icons .cloud_download_rounded), text: "Instalados" ),
1919};
Original file line number Diff line number Diff line change @@ -12,10 +12,9 @@ class HeaderWidget extends StatelessWidget implements PreferredSizeWidget {
1212 @override
1313 Widget build (BuildContext context) {
1414 return AppBar (
15-
1615 leading: const LogoWidget (),
1716 title: Text (
18- "Central de Programas " ,
17+ "Tiger Store " ,
1918 style: Theme .of (context).textTheme.titleSmall,
2019 ),
2120 bottom: const MenuTab (),
You can’t perform that action at this time.
0 commit comments