Skip to content

Commit

Permalink
handle open screen
Browse files Browse the repository at this point in the history
  • Loading branch information
info-kareemmohamed committed Oct 18, 2024
1 parent 78bf5c0 commit 1caac2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:ropulva_flutter_task/TaskApp.dart';
import 'package:ropulva_flutter_task/presentation/task_list/desktop_screen/task_list_screen.dart';
import 'package:ropulva_flutter_task/presentation/task_list/mobile_screen/task_list_screen.dart';
import 'package:ropulva_flutter_task/presentation/task_list/desktop_screen/task_list_screen.dart';


void main() async {
Expand Down Expand Up @@ -39,7 +39,7 @@ class MyApp extends StatelessWidget {
useMaterial3: true,
scaffoldBackgroundColor: const Color(0xffFFFFFF),
),
home: Platform.isWindows?const TaskListScreen(): const TaskListMobileScreen(),
home: Platform.isWindows?const TaskListScreen(): const TaskListScreen(),
);
},
);
Expand Down

0 comments on commit 1caac2d

Please sign in to comment.