Replace button by floatingActionButton; show 20 last transcations; Use flutter way for version controle

This commit is contained in:
poka 2020-12-16 13:13:49 +01:00
parent fa3940201e
commit 1c26298a16
4 changed files with 124 additions and 138 deletions

View File

@ -80,7 +80,7 @@ Future getBalance(String pubkey) async {
// Get history
Future getHistory(String pubkey) async {
print(pubkey);
var number = 3;
var number = 20;
var query = """{
txsHistoryBc(
pubkeyOrScript: "$pubkey"

View File

@ -94,8 +94,8 @@ class _MyAppState extends State<MyApp> {
errorBorder: InputBorder.none,
disabledBorder: InputBorder.none,
),
style:
TextStyle(fontSize: 30.0, color: Colors.black)),
style: TextStyle(
fontSize: 30.0, color: Colors.black)),
TextField(
// Affichage history
enabled: false,
@ -118,7 +118,6 @@ class _MyAppState extends State<MyApp> {
height: 1.5,
color: Colors.black)),
SizedBox(height: 20),
this._buttonGroup(),
SizedBox(height: 70),
// Expanded(
// child: ListView.builder(
@ -141,42 +140,22 @@ class _MyAppState extends State<MyApp> {
],
);
},
)
// floatingActionButton: FloatingActionButton(
// onPressed: () => _scanBytes(),
// tooltip: 'Prennez une photo',
// child: const Icon(Icons.camera_alt),
// ),
),
);
}
Widget _buttonGroup() {
return Row(
children: <Widget>[
Expanded(
flex: 1,
child: SizedBox(
height: 120,
child: InkWell(
onTap: _scan,
child: Card(
child: Column(
children: <Widget>[
Expanded(
flex: 2,
child: Image.asset('images/scanner.png'),
),
Divider(height: 20),
Expanded(flex: 1, child: Text("Scanner")),
],
floatingActionButton: Container(
height: 80.0,
width: 80.0,
child: FittedBox(
child: FloatingActionButton(
onPressed: () => _scan(),
// label: Text('Scanner'),
child: Container(
height: 40.0,
width: 40.0,
child: Image.asset('images/scanner.png')),
backgroundColor: Color.fromARGB(500, 204, 255, 255),
),
),
),
),
),
],
);
)));
}
Future checkNode() async {
@ -188,8 +167,10 @@ class _MyAppState extends State<MyApp> {
Future _scan() async {
await Permission.camera.request();
String barcode = await scanner.scan();
this._outputPubkey.text = "";
// this._outputPubkey.text = "";
if (barcode != null) {
isPubkey(barcode);
}
return barcode;
}

View File

@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.0+1
version: 0.0.0+3
environment:
sdk: ">=2.7.0 <3.0.0"

View File

@ -1,13 +1,18 @@
#!/bin/bash
[[ -z $1 ]] && echo "Please choose a version." && exit 1
# [[ -z $1 ]] && echo "Please choose a version." && exit 1
flutter build apk --split-per-abi
fVersion=$(grep "version: " pubspec.yaml | awk '{ print $2 }')
APPNAME="gecko"
VERSION="$1"
VERSION=$(awk -F '+' '{ print $1 }' <<<$fVersion)
BUILD=$(awk -F '+' '{ print $2 }' <<<$fVersion)
ori_app="app.apk"
echo "Nom du build final: ${APPNAME}-${VERSION}+${BUILD}.apk"
flutter build apk --split-per-abi --build-name $VERSION --build-number $BUILD
if [[ -d $HOME/Téléchargements ]]; then
DL="$HOME/Téléchargements"
elif [[ -d $HOME/Downloads ]]; then
@ -16,7 +21,7 @@ else
DL="/tmp"
fi
appPath="$DL/${APPNAME}-${VERSION}.apk"
appPath="$DL/${APPNAME}-${VERSION}+${BUILD}.apk"
mv build/app/outputs/flutter-apk/$ori_app "$appPath" && echo "$appPath" || exit 1
exit 0