temp removed app icon shit
This commit is contained in:
parent
8df3623d91
commit
1c49ffd57f
@ -41,7 +41,7 @@
|
|||||||
<meta-data android:name="flutterEmbedding" android:value="2" />
|
<meta-data android:name="flutterEmbedding" android:value="2" />
|
||||||
|
|
||||||
<!-- custom app icon thingies from here -->
|
<!-- custom app icon thingies from here -->
|
||||||
<activity-alias
|
<!-- <activity-alias
|
||||||
android:label="reFilc"
|
android:label="reFilc"
|
||||||
android:icon="@drawable/launch_ic_refilc_default"
|
android:icon="@drawable/launch_ic_refilc_default"
|
||||||
android:name=".MainActivityAlias"
|
android:name=".MainActivityAlias"
|
||||||
@ -100,7 +100,7 @@
|
|||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity-alias>
|
</activity-alias> -->
|
||||||
<!-- end of custom app icon thingies -->
|
<!-- end of custom app icon thingies -->
|
||||||
|
|
||||||
<receiver android:name="hu.refilc.naplo.widget_timetable.WidgetTimetable"
|
<receiver android:name="hu.refilc.naplo.widget_timetable.WidgetTimetable"
|
||||||
|
@ -11,7 +11,7 @@ import 'package:provider/provider.dart';
|
|||||||
import 'missed_exam_tile.i18n.dart';
|
import 'missed_exam_tile.i18n.dart';
|
||||||
|
|
||||||
class MissedExamView extends StatelessWidget {
|
class MissedExamView extends StatelessWidget {
|
||||||
const MissedExamView(this.missedExams, {Key? key}) : super(key: key);
|
const MissedExamView(this.missedExams, {super.key});
|
||||||
|
|
||||||
final List<Lesson> missedExams;
|
final List<Lesson> missedExams;
|
||||||
|
|
||||||
@ -26,8 +26,7 @@ class MissedExamView extends StatelessWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class MissedExamViewTile extends StatelessWidget {
|
class MissedExamViewTile extends StatelessWidget {
|
||||||
const MissedExamViewTile(this.lesson, {Key? key, this.padding})
|
const MissedExamViewTile(this.lesson, {super.key, this.padding});
|
||||||
: super(key: key);
|
|
||||||
|
|
||||||
final EdgeInsetsGeometry? padding;
|
final EdgeInsetsGeometry? padding;
|
||||||
final Lesson lesson;
|
final Lesson lesson;
|
||||||
|
@ -4,7 +4,7 @@ import 'package:filcnaplo_mobile_ui/common/widgets/missed_exam/missed_exam_view.
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class MissedExamViewable extends StatelessWidget {
|
class MissedExamViewable extends StatelessWidget {
|
||||||
const MissedExamViewable(this.missedExams, {Key? key}) : super(key: key);
|
const MissedExamViewable(this.missedExams, {super.key});
|
||||||
|
|
||||||
final List<Lesson> missedExams;
|
final List<Lesson> missedExams;
|
||||||
|
|
||||||
|
@ -4,8 +4,7 @@ import 'package:filcnaplo_mobile_ui/common/profile_image/profile_image.dart';
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class NoteTile extends StatelessWidget {
|
class NoteTile extends StatelessWidget {
|
||||||
const NoteTile(this.note, {Key? key, this.onTap, this.padding})
|
const NoteTile(this.note, {super.key, this.onTap, this.padding});
|
||||||
: super(key: key);
|
|
||||||
|
|
||||||
final Note note;
|
final Note note;
|
||||||
final void Function()? onTap;
|
final void Function()? onTap;
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 7aa01ba960bc4a79d77cc309c646e5cb67e184c7
|
Subproject commit 49ad58f4d9711a0b2d9716d456e8781ff6b92250
|
Loading…
x
Reference in New Issue
Block a user