Skip to content

Commit

Permalink
first commercially release
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofKekesi committed Jul 5, 2020
1 parent c1dc0d1 commit b53727e
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 253 deletions.
11 changes: 0 additions & 11 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.flutter_chem">
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="Elements"
android:icon="@mipmap/ic_launcher">

<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-3940256099942544~3347511713"/>

<activity
android:name=".MainActivity"
android:launchMode="singleTop"
Expand All @@ -26,8 +17,6 @@
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/drawer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class customDrawer extends StatelessWidget {
void autoAboutDialog(context) {
showAboutDialog(
context: context,
applicationVersion: '0.0.1',
applicationVersion: '0.0.2',
applicationName: 'Elements',
applicationLegalese: 'Kristof Kekesi');
}
10 changes: 8 additions & 2 deletions lib/widgets/landing.dart
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,9 @@ class _landingState extends State<landing> {
},
);
},
child: Tooltip(
child: Container(
width: MediaQuery.of(context).size.width,
child: Tooltip(
message: AppLocalizations.of(context)
.translate('electronnegativitySelector'),
child: Text(
Expand All @@ -433,6 +435,7 @@ class _landingState extends State<landing> {
),
),
),
),
),
GestureDetector(
onTap: () {
Expand Down Expand Up @@ -921,7 +924,9 @@ class _landingState extends State<landing> {
},
);
},
child: Tooltip(
child: Container(
width: MediaQuery.of(context).size.width,
child: Tooltip(
message:
AppLocalizations.of(context).translate('types'),
child: Text(
Expand All @@ -936,6 +941,7 @@ class _landingState extends State<landing> {
),
),
),
),
],
),
),
Expand Down
Loading

0 comments on commit b53727e

Please sign in to comment.