diff --git a/lib/main.dart b/lib/main.dart index ad82c52..8c1f815 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,7 +1,7 @@ import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; -import 'package:poet_repository/poet_screen.dart'; +import 'package:poet/poet_screen.dart'; void main() { WidgetsFlutterBinding.ensureInitialized(); diff --git a/pubspec.yaml b/pubspec.yaml index d2f79eb..c702f29 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ -name: poet_repository -description: "시인의 서재" +name: poet +description: "A new Flutter project." # The following line prevents the package from being accidentally published to # pub.dev using `flutter pub publish`. This is preferred for private packages. publish_to: 'none' # Remove this line if you wish to publish to pub.dev @@ -39,7 +39,6 @@ dependencies: dev_dependencies: flutter_test: sdk: flutter - flutter_launcher_icons: "^0.13.1" # The "flutter_lints" package below contains a set of recommended lints to # encourage good coding practices. The lint set provided by the package is @@ -95,9 +94,3 @@ flutter: # # For details regarding fonts from package dependencies, # see https://flutter.dev/to/font-from-package - -flutter_launcher_icons: - android: "launcher_icon" - ios: true - image_path: "assets/images/ui/UI_Play.webp" - remove_alpha_ios: true diff --git a/test/widget_test.dart b/test/widget_test.dart deleted file mode 100644 index 3a7a0b8..0000000 --- a/test/widget_test.dart +++ /dev/null @@ -1,30 +0,0 @@ -// This is a basic Flutter widget test. -// -// To perform an interaction with a widget in your test, use the WidgetTester -// utility in the flutter_test package. For example, you can send tap and scroll -// gestures. You can also use WidgetTester to find child widgets in the widget -// tree, read text, and verify that the values of widget properties are correct. - -import 'package:flutter/material.dart'; -import 'package:flutter_test/flutter_test.dart'; - -import 'package:poet_repository/main.dart'; - -void main() { - testWidgets('Counter increments smoke test', (WidgetTester tester) async { - // Build our app and trigger a frame. - await tester.pumpWidget(PoetStudyScreen()); - - // Verify that our counter starts at 0. - expect(find.text('0'), findsOneWidget); - expect(find.text('1'), findsNothing); - - // Tap the '+' icon and trigger a frame. - await tester.tap(find.byIcon(Icons.add)); - await tester.pump(); - - // Verify that our counter has incremented. - expect(find.text('0'), findsNothing); - expect(find.text('1'), findsOneWidget); - }); -}