From 45d164e23e461b06aa480b92d7211bf2cdef2084 Mon Sep 17 00:00:00 2001 From: shilangyu Date: Mon, 31 Aug 2020 22:30:11 +0200 Subject: [PATCH] reverted main.dart --- lib/main.dart | 7 +------ test/widget_test.dart | 29 ----------------------------- 2 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 test/widget_test.dart diff --git a/lib/main.dart b/lib/main.dart index c952204..e1ecae5 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,11 +1,7 @@ -import 'dart:convert'; - import 'package:flutter/material.dart'; import 'package:flutter_mobx/flutter_mobx.dart'; -import 'package:lemmy_api_client/lemmy_api_client.dart'; import 'package:provider/provider.dart'; -import 'pages/profile_tab.dart'; import 'stores/config_store.dart'; Future main() async { @@ -38,8 +34,7 @@ class MyApp extends StatelessWidget { primarySwatch: ctx.watch().accentColor, visualDensity: VisualDensity.adaptivePlatformDensity, ), - home: UserProfileTab(User.fromJson(jsonDecode( - '''{"id":13917,"name":"shilangyu","preferred_username":null,"password_encrypted":"","email":"xmarcinmarcin@gmail.com","avatar":null,"admin":false,"banned":false,"published":"2020-08-23T07:13:23.229279","updated":"2020-08-31T14:24:42.495740","show_nsfw":true,"theme":"minty","default_sort_type":0,"default_listing_type":1,"lang":"browser","show_avatars":true,"send_notifications_to_email":false,"matrix_user_id":null,"actor_id":"https://dev.lemmy.ml/u/shilangyu","bio":null,"local":true,"private_key":null,"public_key":null,"last_refreshed_at":"2020-08-23T07:13:23.229279","banner":"https://dev.lemmy.ml/pictrs/image/Cdx3TfNb8g.jpg"}'''))), + home: MyHomePage(title: 'Flutter hello world'), ), ); } diff --git a/test/widget_test.dart b/test/widget_test.dart deleted file mode 100644 index fe479c8..0000000 --- a/test/widget_test.dart +++ /dev/null @@ -1,29 +0,0 @@ -// This is a basic Flutter widget test. -// -// To perform an interaction with a widget in your test, use the WidgetTester -// utility that Flutter provides. 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:lemmur/main.dart'; - -void main() { - testWidgets('Counter increments smoke test', (tester) async { - // Build our app and trigger a frame. - await tester.pumpWidget(MyApp()); - - // 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); - }); -}