make the background colors not have an alpha value of 0

pull/2/head
Amy 3 years ago
parent 90890af33e
commit c12f68d6c9
No known key found for this signature in database
GPG Key ID: C642EA4B2F4096BE

Binary file not shown.

Before

Width:  |  Height:  |  Size: 544 B

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 442 B

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 721 B

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 13 KiB

@ -1,4 +1,4 @@
import '../classes/location.dart'; import 'package:jade_gui/classes/location.dart';
List<Location> america = [ List<Location> america = [
Location( Location(

@ -1,17 +1,17 @@
import 'Africa.dart'; import 'africa.dart';
import 'America.dart'; import 'america.dart';
import 'Antarctica.dart'; import 'antarctica.dart';
import 'Asia.dart'; import 'asia.dart';
import 'Atlantic.dart'; import 'atlantic.dart';
import 'Australia.dart'; import 'australia.dart';
import 'Brazil.dart'; import 'brazil.dart';
import 'Canada.dart'; import 'canada.dart';
import 'Chile.dart'; import 'chile.dart';
import 'Europe.dart'; import 'europe.dart';
import 'Indian.dart'; import 'indian.dart';
import 'Mexico.dart'; import 'mexico.dart';
import 'Pacific.dart'; import 'pacific.dart';
import 'US.dart'; import 'us.dart';
import 'package:jade_gui/classes/location.dart'; import 'package:jade_gui/classes/location.dart';
class Local { class Local {

@ -29,11 +29,11 @@ class _JadeguiState extends State<Jadegui> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
backgroundColor: const Color.fromARGB(0, 17, 17, 17), backgroundColor: const Color.fromARGB(255, 23, 23, 23),
body: Row( body: Row(
children: <Widget>[ children: <Widget>[
NavigationRail( NavigationRail(
backgroundColor: const Color.fromARGB(0, 27, 27, 27), backgroundColor: const Color.fromARGB(255, 27, 27, 27),
selectedIndex: _selectedIndex, selectedIndex: _selectedIndex,
onDestinationSelected: (int index) { onDestinationSelected: (int index) {
setState(() { setState(() {

Loading…
Cancel
Save