Compare commits

...

1 Commits

Author SHA1 Message Date
poka f4aac1e1a4 Globalise colors 2021-11-08 22:53:57 +01:00
28 changed files with 164 additions and 122 deletions

View File

@ -1,4 +1,5 @@
import 'dart:io'; import 'dart:io';
import 'package:flutter/cupertino.dart';
import 'package:gecko/models/walletData.dart'; import 'package:gecko/models/walletData.dart';
import 'package:hive/hive.dart'; import 'package:hive/hive.dart';
import 'package:logger/logger.dart'; import 'package:logger/logger.dart';
@ -25,3 +26,9 @@ double ratio;
// Logger // Logger
var log = Logger(); var log = Logger();
// Colors
Color orange = Color(0xffD28928);
Color yellow = Color(0xFFFFCA6F);
Color floattingYellow = Color(0xffEFEFBF);
Color backgroundColor = Color(0xFFF5F5F5);

View File

@ -150,14 +150,14 @@ class Gecko extends StatelessWidget {
ResponsiveBreakpoint.autoScale(800, name: TABLET), ResponsiveBreakpoint.autoScale(800, name: TABLET),
ResponsiveBreakpoint.resize(1000, name: DESKTOP), ResponsiveBreakpoint.resize(1000, name: DESKTOP),
], ],
background: Container(color: Color(0xFFF5F5F5))), background: Container(color: backgroundColor)),
title: 'Ğecko', title: 'Ğecko',
theme: ThemeData( theme: ThemeData(
appBarTheme: AppBarTheme( appBarTheme: AppBarTheme(
color: const Color(0xffFFD58D), color: yellow,
foregroundColor: const Color(0xFF000000), foregroundColor: const Color(0xFF000000),
), ),
primaryColor: Color(0xffFFD58D), primaryColor: yellow,
textTheme: TextTheme( textTheme: TextTheme(
bodyText1: TextStyle(), bodyText1: TextStyle(),
bodyText2: TextStyle(), bodyText2: TextStyle(),

View File

@ -1,5 +1,6 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:bubble/bubble.dart'; import 'package:bubble/bubble.dart';
import 'package:gecko/globals.dart';
class CommonElements { class CommonElements {
// Exemple de Widget // Exemple de Widget
@ -101,9 +102,9 @@ class CommonElements {
return Container( return Container(
child: ClipOval( child: ClipOval(
child: Material( child: Material(
color: Color(0xffFFD58D), // button color color: yellow, // button color
child: InkWell( child: InkWell(
splashColor: Color(0xffD28928), // inkwell color splashColor: orange, // inkwell color
child: Padding( child: Padding(
padding: padding, padding: padding,
child: Image(image: image, height: imgHight)), child: Image(image: image, height: imgHight)),

View File

@ -79,7 +79,7 @@ class HistoryScreen extends StatelessWidget with ChangeNotifier {
} }
})) }))
], ],
backgroundColor: Color(0xffFFD58D), backgroundColor: yellow,
), ),
floatingActionButton: Container( floatingActionButton: Container(
height: 80.0, height: 80.0,
@ -96,8 +96,7 @@ class HistoryScreen extends StatelessWidget with ChangeNotifier {
child: Padding( child: Padding(
padding: EdgeInsets.symmetric(horizontal: 3), padding: EdgeInsets.symmetric(horizontal: 3),
child: Image.asset('assets/qrcode-scan.png'))), child: Image.asset('assets/qrcode-scan.png'))),
backgroundColor: Color( backgroundColor: floattingYellow,
0xffEFEFBF), //Color(0xffFFD68E), //Color.fromARGB(500, 204, 255, 255),
), ),
), ),
), ),
@ -302,8 +301,7 @@ class HistoryScreen extends StatelessWidget with ChangeNotifier {
child: Text( child: Text(
_historyProvider.historySwitchButtun, _historyProvider.historySwitchButtun,
style: TextStyle( style: TextStyle(
fontSize: 15, fontSize: 15, color: orange))),
color: Color(0xffD28928)))),
// const Divider( // const Divider(
// color: Colors.grey, // color: Colors.grey,
// height: 5, // height: 5,
@ -377,7 +375,7 @@ class HistoryScreen extends StatelessWidget with ChangeNotifier {
padding: const EdgeInsets.only(top: 15), padding: const EdgeInsets.only(top: 15),
child: OutlinedButton( child: OutlinedButton(
style: OutlinedButton.styleFrom( style: OutlinedButton.styleFrom(
side: BorderSide(width: 2, color: Color(0xffD28928))), side: BorderSide(width: 2, color: orange)),
onPressed: () { onPressed: () {
// if (_formKey.currentState.validate()) { // if (_formKey.currentState.validate()) {
// _formKey.currentState.save(); // _formKey.currentState.save();

View File

@ -49,7 +49,7 @@ class HomeScreen extends StatelessWidget {
height: 130), height: 130),
]), ]),
decoration: BoxDecoration( decoration: BoxDecoration(
color: Color(0xffD28928), color: orange,
), ),
), ),
ListTile( ListTile(
@ -129,9 +129,9 @@ class HomeScreen extends StatelessWidget {
} }
})) }))
], ],
backgroundColor: Color(0xffFFD58D), backgroundColor: yellow,
), ),
backgroundColor: Color(0xffF9F9F1), backgroundColor: backgroundColor,
body: Builder( body: Builder(
builder: (ctx) => StatefulWrapper( builder: (ctx) => StatefulWrapper(
onInit: () { onInit: () {
@ -175,10 +175,9 @@ class HomeScreen extends StatelessWidget {
Container( Container(
child: ClipOval( child: ClipOval(
child: Material( child: Material(
color: Color(0xffFFD58D), // button color color: yellow, // button color
child: InkWell( child: InkWell(
splashColor: Color( splashColor: orange, // inkwell color
0xffD28928), // inkwell color
child: Padding( child: Padding(
padding: EdgeInsets.all(22), padding: EdgeInsets.all(22),
child: Image( child: Image(
@ -221,10 +220,9 @@ class HomeScreen extends StatelessWidget {
Container( Container(
child: ClipOval( child: ClipOval(
child: Material( child: Material(
color: Color(0xffFFD58D), // button color color: yellow, // button color
child: InkWell( child: InkWell(
splashColor: Color( splashColor: orange, // inkwell color
0xffD28928), // inkwell color
child: Padding( child: Padding(
padding: EdgeInsets.symmetric( padding: EdgeInsets.symmetric(
horizontal: 20, vertical: 16), horizontal: 20, vertical: 16),
@ -269,10 +267,9 @@ class HomeScreen extends StatelessWidget {
child: ClipOval( child: ClipOval(
key: Key('manageWallets'), key: Key('manageWallets'),
child: Material( child: Material(
color: Color(0xffFFD58D), // button color color: yellow, // button color
child: InkWell( child: InkWell(
splashColor: Color( splashColor: orange, // inkwell color
0xffD28928), // inkwell color
child: Padding( child: Padding(
padding: EdgeInsets.all(23), padding: EdgeInsets.all(23),
child: Image( child: Image(
@ -323,7 +320,7 @@ class HomeScreen extends StatelessWidget {
])) ]))
]), ]),
// bottomNavigationBar: BottomNavigationBar( // bottomNavigationBar: BottomNavigationBar(
// backgroundColor: Color(0xffFFD58D), // backgroundColor: yellow,
// fixedColor: Colors.grey[850], // fixedColor: Colors.grey[850],
// unselectedItemColor: Color(0xffBD935C), // unselectedItemColor: Color(0xffBD935C),
// type: BottomNavigationBarType.fixed, // type: BottomNavigationBarType.fixed,

View File

@ -2,6 +2,7 @@ import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:dubp/dubp.dart'; import 'package:dubp/dubp.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:gecko/globals.dart';
import 'package:gecko/models/changePin.dart'; import 'package:gecko/models/changePin.dart';
import 'dart:io'; import 'dart:io';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
@ -69,7 +70,7 @@ class ChangePinScreen extends StatelessWidget with ChangeNotifier {
fontWeight: FontWeight.bold)), fontWeight: FontWeight.bold)),
IconButton( IconButton(
icon: Icon(Icons.replay), icon: Icon(Icons.replay),
color: Color(0xffD28928), color: orange,
onPressed: () async { onPressed: () async {
_newWalletFile = _newWalletFile =
await _changePin.changePin(walletName, oldPin); await _changePin.changePin(walletName, oldPin);
@ -85,8 +86,7 @@ class ChangePinScreen extends StatelessWidget with ChangeNotifier {
child: ElevatedButton( child: ElevatedButton(
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 12, elevation: 12,
primary: primary: Colors.green[400], //yellow, // background
Colors.green[400], //Color(0xffFFD68E), // background
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: _changePin.newPin.text != '' onPressed: _changePin.newPin.text != ''

View File

@ -127,8 +127,8 @@ class ConfirmStoreWallet extends StatelessWidget with ChangeNotifier {
key: Key('confirmStorage'), key: Key('confirmStorage'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 12, elevation: 12,
primary: Colors.green[ primary:
400], //Color(0xffFFD68E), // background Colors.green[400], //yellow, // background
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: (_generateWalletProvider onPressed: (_generateWalletProvider

View File

@ -1,4 +1,5 @@
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:gecko/globals.dart';
import 'package:gecko/models/generateWallets.dart'; import 'package:gecko/models/generateWallets.dart';
import 'package:gecko/screens/myWallets/confirmWalletStorage.dart'; import 'package:gecko/screens/myWallets/confirmWalletStorage.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
@ -42,8 +43,8 @@ class GenerateWalletsScreen extends StatelessWidget {
width: 40.0, width: 40.0,
child: Icon(Icons.replay, color: Colors.grey[850]), child: Icon(Icons.replay, color: Colors.grey[850]),
), ),
backgroundColor: Color( backgroundColor:
0xffEFEFBF), //Color(0xffFFD68E), //Color.fromARGB(500, 204, 255, 255), floattingYellow, //yellow, //Color.fromARGB(500, 204, 255, 255),
))), ))),
body: Builder( body: Builder(
builder: (ctx) => SafeArea( builder: (ctx) => SafeArea(
@ -83,7 +84,7 @@ class GenerateWalletsScreen extends StatelessWidget {
fontWeight: FontWeight.bold)), fontWeight: FontWeight.bold)),
IconButton( IconButton(
icon: Icon(Icons.replay), icon: Icon(Icons.replay),
color: Color(0xffD28928), color: orange,
onPressed: () { onPressed: () {
_generateWalletProvider.changePinCode( _generateWalletProvider.changePinCode(
reload: false); reload: false);
@ -96,7 +97,7 @@ class GenerateWalletsScreen extends StatelessWidget {
ElevatedButton( ElevatedButton(
key: Key('storeKeychain'), key: Key('storeKeychain'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
primary: Color(0xffFFD68E), // background primary: yellow, // background
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: _generateWalletProvider.walletIsGenerated onPressed: _generateWalletProvider.walletIsGenerated
@ -153,8 +154,8 @@ class GenerateWalletsScreen extends StatelessWidget {
SizedBox( SizedBox(
width: 30, width: 30,
height: 25, height: 25,
child: Icon(Icons.info_outline, child:
size: 22, color: Color(0xffD28928))), Icon(Icons.info_outline, size: 22, color: orange)),
SizedBox(height: 1) SizedBox(height: 1)
]), ]),
Text( Text(

View File

@ -1,5 +1,6 @@
import 'dart:async'; import 'dart:async';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:gecko/globals.dart';
import 'package:gecko/models/generateWallets.dart'; import 'package:gecko/models/generateWallets.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:gecko/models/myWallets.dart'; import 'package:gecko/models/myWallets.dart';
@ -149,7 +150,7 @@ class ImportWalletScreen extends StatelessWidget {
fontWeight: FontWeight.bold)), fontWeight: FontWeight.bold)),
IconButton( IconButton(
icon: Icon(Icons.replay), icon: Icon(Icons.replay),
color: Color(0xffD28928), color: orange,
onPressed: () { onPressed: () {
_generateWalletProvider.changePinCode( _generateWalletProvider.changePinCode(
reload: true); reload: true);
@ -161,7 +162,7 @@ class ImportWalletScreen extends StatelessWidget {
SizedBox(height: 30), SizedBox(height: 30),
ElevatedButton( ElevatedButton(
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
primary: Color(0xffFFD68E), // background primary: yellow, // background
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: _generateWalletProvider.canImport && onPressed: _generateWalletProvider.canImport &&
@ -205,8 +206,8 @@ class ImportWalletScreen extends StatelessWidget {
SizedBox( SizedBox(
width: 30, width: 30,
height: 25, height: 25,
child: Icon(Icons.info_outline, child:
size: 22, color: Color(0xffD28928))), Icon(Icons.info_outline, size: 22, color: orange)),
SizedBox(height: 1) SizedBox(height: 1)
]), ]),
Text( Text(

View File

@ -22,7 +22,7 @@ class UnlockingWallet extends StatelessWidget {
StreamController<ErrorAnimationType> errorController; StreamController<ErrorAnimationType> errorController;
final formKey = GlobalKey<FormState>(); final formKey = GlobalKey<FormState>();
bool hasError = false; bool hasError = false;
var pinColor = Color(0xffF9F9F1); var pinColor = backgroundColor;
var walletPin = ''; var walletPin = '';
String resultPay; String resultPay;
@ -116,7 +116,7 @@ class UnlockingWallet extends StatelessWidget {
cursorColor: Colors.black, cursorColor: Colors.black,
animationDuration: Duration(milliseconds: 300), animationDuration: Duration(milliseconds: 300),
textStyle: TextStyle(fontSize: 20, height: 1.6), textStyle: TextStyle(fontSize: 20, height: 1.6),
backgroundColor: Color(0xffF9F9F1), backgroundColor: backgroundColor,
enableActiveFill: false, enableActiveFill: false,
errorAnimationController: errorController, errorAnimationController: errorController,
controller: _enterPin, controller: _enterPin,

View File

@ -88,7 +88,7 @@ class WalletOptions extends StatelessWidget {
child: Column(children: <Widget>[ child: Column(children: <Widget>[
Container( Container(
height: isTall ? 15 : 0, height: isTall ? 15 : 0,
color: Color(0xffFFD68E), color: yellow,
), ),
Container( Container(
decoration: BoxDecoration( decoration: BoxDecoration(
@ -96,7 +96,7 @@ class WalletOptions extends StatelessWidget {
begin: Alignment.topCenter, begin: Alignment.topCenter,
end: Alignment.bottomCenter, end: Alignment.bottomCenter,
colors: [ colors: [
Color(0xffFFD68E), yellow,
Color(0xfffafafa), Color(0xfffafafa),
], ],
)), )),
@ -318,7 +318,7 @@ class WalletOptions extends StatelessWidget {
new BorderRadius.circular(8), new BorderRadius.circular(8),
), ),
elevation: 1, elevation: 1,
primary: Color(0xffD28928), // background primary: orange, // background
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -7,6 +7,7 @@ import 'package:flutter/material.dart';
import 'package:gecko/screens/commonElements.dart'; import 'package:gecko/screens/commonElements.dart';
import 'package:gecko/screens/myWallets/walletOptions.dart'; import 'package:gecko/screens/myWallets/walletOptions.dart';
import 'package:gecko/screens/onBoarding/0_noKeychainFound.dart'; import 'package:gecko/screens/onBoarding/0_noKeychainFound.dart';
import 'package:gecko/screens/onBoarding/1.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
// ignore: must_be_immutable // ignore: must_be_immutable
@ -32,57 +33,89 @@ class WalletsHome extends StatelessWidget {
myWalletProvider.getDefaultWallet(); myWalletProvider.getDefaultWallet();
} }
log.d("${myWalletProvider.pinCode},${myWalletProvider.pinLenght}"); // log.d("${myWalletProvider.pinCode},${myWalletProvider.pinLenght}");
return WillPopScope( return WillPopScope(
onWillPop: () { onWillPop: () {
Navigator.popUntil( Navigator.popUntil(
context, context,
ModalRoute.withName('/'), ModalRoute.withName('/'),
); );
return Future<bool>.value(true); return Future<bool>.value(true);
}, },
child: Scaffold( child: Scaffold(
appBar: AppBar( appBar: AppBar(
leading: IconButton( leading: IconButton(
icon: Icon(Icons.arrow_back, color: Colors.black), icon: Icon(Icons.arrow_back, color: Colors.black),
onPressed: () { onPressed: () {
Navigator.popUntil( Navigator.popUntil(
context, context,
ModalRoute.withName('/'), ModalRoute.withName('/'),
); );
}), }),
title: Text('Mes portefeuilles', title: Text('Mes portefeuilles',
key: Key('myWallets'), key: Key('myWallets'), style: TextStyle(color: Colors.grey[850])),
style: TextStyle(color: Colors.grey[850])), backgroundColor: yellow,
backgroundColor: Color(0xffFFD58D), ),
), floatingActionButton: Visibility(
floatingActionButton: Visibility( visible: (isWalletsExists && firstWalletDerivation != -1),
visible: (isWalletsExists && firstWalletDerivation != -1), child: Container(
height: 80.0,
width: 80.0,
child: FittedBox(
child: FloatingActionButton(
key: Key('addDerivation'),
heroTag: "buttonGenerateWallet",
onPressed: () {
showDialog(
context: context,
builder: (BuildContext context) {
return addNewDerivation(context, 1);
});
},
child: Container( child: Container(
height: 80.0, height: 40,
width: 80.0, width: 40,
child: FittedBox( child: Icon(Icons.person_add_alt_1_rounded,
child: FloatingActionButton( color: Colors.grey[850])),
key: Key('addDerivation'), backgroundColor: floattingYellow,
heroTag: "buttonGenerateWallet", ),
onPressed: () { ),
showDialog( ),
context: context, ),
builder: (BuildContext context) { body: SafeArea(
return addNewDerivation(context, 1); child: !isWalletsExists
}); ? NoKeyChainScreen()
}, : Column(children: <Widget>[
child: Container( Expanded(
height: 40, child: myWalletsTiles(context),
width: 40, ),
child: Icon(Icons.person_add_alt_1_rounded, myChestOptions(context)
color: Colors.grey[850])), ]),
backgroundColor: Color(0xffEFEFBF))))), ),
body: SafeArea( ),
child: !isWalletsExists );
? NoKeyChainScreen() }
: myWalletsTiles(context))));
Widget myChestOptions(BuildContext context) {
return Column(children: <Widget>[
ElevatedButton(
style: ElevatedButton.styleFrom(
elevation: 5,
primary: yellow, // background
onPrimary: Colors.black, // foreground
),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (context) {
return OnboardingStepOne();
}),
).then((value) => {
if (value == true) {Navigator.pop(context)}
}),
child: Text("Changer de coffre", style: TextStyle(fontSize: 16))),
SizedBox(height: 50)
]);
} }
Widget myWalletsTiles(BuildContext context) { Widget myWalletsTiles(BuildContext context) {
@ -168,8 +201,8 @@ class WalletsHome extends StatelessWidget {
// contentPadding: const EdgeInsets.only(left: 7.0), // contentPadding: const EdgeInsets.only(left: 7.0),
tileColor: tileColor:
_repository.id()[1] == defaultWallet.id()[1] _repository.id()[1] == defaultWallet.id()[1]
? Color(0xffD28928) ? orange
: Color(0xffFFD58D), : yellow,
// leading: Text('IMAGE'), // leading: Text('IMAGE'),
// subtitle: Text(_repository.split(':')[3], // subtitle: Text(_repository.split(':')[3],
@ -184,7 +217,7 @@ class WalletsHome extends StatelessWidget {
fontSize: 16.0, fontSize: 16.0,
color: _repository.id()[1] == color: _repository.id()[1] ==
defaultWallet.id()[1] defaultWallet.id()[1]
? Color(0xffF9F9F1) ? backgroundColor
: Colors.black)))), : Colors.black)))),
// dense: true, // dense: true,
onTap: () { onTap: () {
@ -231,7 +264,7 @@ class WalletsHome extends StatelessWidget {
key: Key('validDerivation'), key: Key('validDerivation'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 1, elevation: 1,
primary: Color(0xffFFD68E), // background primary: yellow, // background
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: () async { onPressed: () async {

View File

@ -1,6 +1,7 @@
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart'; import 'package:flutter_svg/flutter_svg.dart';
import 'package:gecko/globals.dart';
import 'package:gecko/screens/commonElements.dart'; import 'package:gecko/screens/commonElements.dart';
import 'package:gecko/screens/myWallets/importWallet.dart'; import 'package:gecko/screens/myWallets/importWallet.dart';
import 'package:gecko/screens/onBoarding/1.dart'; import 'package:gecko/screens/onBoarding/1.dart';
@ -29,10 +30,10 @@ class NoKeyChainScreen extends StatelessWidget {
Container( Container(
child: ClipOval( child: ClipOval(
child: Material( child: Material(
color: Color(0xffFFD58D), // button color color: yellow, // button color
child: InkWell( child: InkWell(
key: Key('goStep1'), key: Key('goStep1'),
splashColor: Color(0xffD28928), // inkwell color splashColor: orange, // inkwell color
child: Padding( child: Padding(
padding: EdgeInsets.all(8), padding: EdgeInsets.all(8),
child: Image( child: Image(
@ -71,9 +72,9 @@ class NoKeyChainScreen extends StatelessWidget {
Container( Container(
child: ClipOval( child: ClipOval(
child: Material( child: Material(
color: Color(0xffFFD58D), // button color color: yellow, // button color
child: InkWell( child: InkWell(
splashColor: Color(0xffD28928), // inkwell color splashColor: orange, // inkwell color
child: Padding( child: Padding(
padding: EdgeInsets.all(12), padding: EdgeInsets.all(12),
child: child:

View File

@ -1,5 +1,6 @@
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:gecko/globals.dart';
import 'package:gecko/screens/commonElements.dart'; import 'package:gecko/screens/commonElements.dart';
import 'package:gecko/screens/onBoarding/2.dart'; import 'package:gecko/screens/onBoarding/2.dart';
// import 'package:gecko/models/home.dart'; // import 'package:gecko/models/home.dart';
@ -39,7 +40,7 @@ class OnboardingStepOne extends StatelessWidget {
key: Key('goStep2'), key: Key('goStep2'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -39,7 +39,7 @@ class OnboardingStepTwelve extends StatelessWidget {
key: Key('goStep11'), key: Key('goStep11'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -2,6 +2,7 @@ import 'dart:ui';
import 'package:dubp/dubp.dart'; import 'package:dubp/dubp.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:gecko/globals.dart';
import 'package:gecko/models/generateWallets.dart'; import 'package:gecko/models/generateWallets.dart';
import 'package:gecko/screens/commonElements.dart'; import 'package:gecko/screens/commonElements.dart';
import 'package:gecko/screens/onBoarding/12.dart'; import 'package:gecko/screens/onBoarding/12.dart';
@ -68,7 +69,7 @@ class OnboardingStepThirteen extends StatelessWidget {
fontWeight: FontWeight.bold)), fontWeight: FontWeight.bold)),
IconButton( IconButton(
icon: Icon(Icons.replay), icon: Icon(Icons.replay),
color: Color(0xffD28928), color: orange,
onPressed: () async { onPressed: () async {
generatedWallet = await _generateWalletProvider generatedWallet = await _generateWalletProvider
.changePinCode(reload: false); .changePinCode(reload: false);
@ -87,7 +88,7 @@ class OnboardingStepThirteen extends StatelessWidget {
key: Key('changeSecretCode'), key: Key('changeSecretCode'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffFFD58D), primary: yellow,
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: () async { onPressed: () async {
@ -105,7 +106,7 @@ class OnboardingStepThirteen extends StatelessWidget {
key: Key('goStep12'), key: Key('goStep12'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () async { onPressed: () async {

View File

@ -100,7 +100,7 @@ class OnboardingStepFourteen extends StatelessWidget {
cursorColor: Colors.black, cursorColor: Colors.black,
animationDuration: Duration(milliseconds: 300), animationDuration: Duration(milliseconds: 300),
textStyle: TextStyle(fontSize: 20, height: 1.6), textStyle: TextStyle(fontSize: 20, height: 1.6),
backgroundColor: Color(0xffF9F9F1), backgroundColor: backgroundColor,
enableActiveFill: false, enableActiveFill: false,
errorAnimationController: errorController, errorAnimationController: errorController,
controller: _enterPin, controller: _enterPin,

View File

@ -38,7 +38,7 @@ class OnboardingStepFiveteen extends StatelessWidget {
key: Key('goWalletHome'), key: Key('goWalletHome'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -1,5 +1,6 @@
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:gecko/globals.dart';
import 'package:gecko/screens/commonElements.dart'; import 'package:gecko/screens/commonElements.dart';
import 'package:gecko/screens/onBoarding/3.dart'; import 'package:gecko/screens/onBoarding/3.dart';
// import 'package:gecko/screens/commonElements.dart'; // import 'package:gecko/screens/commonElements.dart';
@ -39,7 +40,7 @@ class OnboardingStepTwo extends StatelessWidget {
key: Key('goStep3'), key: Key('goStep3'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -44,7 +44,7 @@ class OnboardingStepFor extends StatelessWidget {
key: Key('goStep4'), key: Key('goStep4'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -39,7 +39,7 @@ class OnboardingStepFive extends StatelessWidget {
key: Key('goStep5'), key: Key('goStep5'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -56,7 +56,7 @@ class OnboardingStepSeven extends StatelessWidget {
key: Key('goStep6'), key: Key('goStep6'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -39,7 +39,7 @@ class OnboardingStepEight extends StatelessWidget {
key: Key('goStep7'), key: Key('goStep7'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -59,7 +59,7 @@ class OnboardingStepNine extends StatelessWidget {
key: Key('generateMnemonic'), key: Key('generateMnemonic'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffFFD58D), primary: yellow,
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: () { onPressed: () {
@ -76,7 +76,7 @@ class OnboardingStepNine extends StatelessWidget {
key: Key('goStep8'), key: Key('goStep8'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -111,7 +111,7 @@ class OnboardingStepTen extends StatelessWidget {
key: Key('askedWord'), key: Key('askedWord'),
style: TextStyle( style: TextStyle(
fontSize: isTall ? 17 : 10, fontSize: isTall ? 17 : 10,
color: Color(0xffD28928), color: orange,
fontWeight: FontWeight.w400)), fontWeight: FontWeight.w400)),
SizedBox(height: isTall ? 10 : 0), SizedBox(height: isTall ? 10 : 0),
Container( Container(
@ -162,7 +162,7 @@ class OnboardingStepTen extends StatelessWidget {
key: Key('goStep9'), key: Key('goStep9'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -47,7 +47,7 @@ class OnboardingStepEleven extends StatelessWidget {
key: Key('goStep10'), key: Key('goStep10'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xffD28928), primary: orange,
onPrimary: Colors.white, // foreground onPrimary: Colors.white, // foreground
), ),
onPressed: () { onPressed: () {

View File

@ -44,7 +44,7 @@ class SettingsScreen extends StatelessWidget {
child: ElevatedButton( child: ElevatedButton(
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xFFFFCA6F), // background primary: yellow, // background
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: () => Navigator.push( onPressed: () => Navigator.push(
@ -65,7 +65,7 @@ class SettingsScreen extends StatelessWidget {
key: Key('generateKeychain'), key: Key('generateKeychain'),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
elevation: 5, elevation: 5,
primary: Color(0xFFFFCA6F), // background primary: yellow, // background
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: !_myWallets.checkIfWalletExist() onPressed: !_myWallets.checkIfWalletExist()

View File

@ -1,4 +1,5 @@
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:gecko/globals.dart';
import 'package:gecko/screens/home.dart'; import 'package:gecko/screens/home.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
// import 'package:gecko/models/home.dart'; // import 'package:gecko/models/home.dart';
@ -35,8 +36,7 @@ class TemplateScreen extends StatelessWidget {
width: 40.0, width: 40.0,
child: Icon(Icons.home, color: Colors.grey[850]), child: Icon(Icons.home, color: Colors.grey[850]),
), ),
backgroundColor: Color( backgroundColor: floattingYellow,
0xffEFEFBF), //Color(0xffFFD68E), //Color.fromARGB(500, 204, 255, 255),
))), ))),
body: SafeArea( body: SafeArea(
child: Column(children: <Widget>[ child: Column(children: <Widget>[
@ -56,7 +56,7 @@ class TemplateScreen extends StatelessWidget {
SizedBox(height: 20), SizedBox(height: 20),
ElevatedButton( ElevatedButton(
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
primary: Color(0xffFFD68E), // background primary: yellow, // background
onPrimary: Colors.black, // foreground onPrimary: Colors.black, // foreground
), ),
onPressed: () { onPressed: () {