diff --git a/1 b/1 deleted file mode 100644 index 2932bbb..0000000 --- a/1 +++ /dev/null @@ -1,39 +0,0 @@ -{ - description = "An example project using Flutter"; - - inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - flake-utils.url = "github:numtide/flake-utils"; - flake-compat = { - url = "github:edolstra/flake-compat"; - flake = false; - }; - }; - - outputs = { self, nixpkgs, flake-utils, ... }@inputs: - flake-utils.lib.eachDefaultSystem (system: - let - pkgs = import nixpkgs { - inherit system; - config = { - allowUnfree = true; - android_sdk.accept_license = true; - }; - }; - in { - devShells.default = let - android = pkgs.callPackage ./nix/android.nix { }; - in pkgs.mkShell { - buildInputs = with pkgs; [ - flutter - jdk11 - android.platform-tools - ]; - - ANDROID_HOME = "${android.androidsdk}/libexec/android-sdk"; - JAVA_HOME = pkgs.jdk11; - ANDROID_AVD_HOME = "${./.}/.android/avd"; - }; - } - ); -} diff --git a/lib/components/bottomsheet.dart b/lib/components/bottomsheet.dart index dbe3dc2..0140deb 100644 --- a/lib/components/bottomsheet.dart +++ b/lib/components/bottomsheet.dart @@ -57,7 +57,6 @@ class CLNBottomSheet { }, child: Text( '$display msats', - textScaler: const TextScaler.linear(1.0), style: TextStyle( fontSize: 40, fontWeight: FontWeight.bold, diff --git a/lib/views/request/request_view.dart b/lib/views/request/request_view.dart index 3d5b51c..40e604c 100644 --- a/lib/views/request/request_view.dart +++ b/lib/views/request/request_view.dart @@ -363,7 +363,6 @@ class _RequestViewState extends State { ) : Text( value, - textScaler: const TextScaler.linear(1.0), style: const TextStyle( fontSize: 35, fontWeight: FontWeight.bold,