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 = [
Location(

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

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

Loading…
Cancel
Save