Skip to content
This repository has been archived by the owner on Dec 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #83 from Fried-man/region_selection
Browse files Browse the repository at this point in the history
Add documentation & remove unused imports
  • Loading branch information
Fried-man authored Oct 10, 2022
2 parents 45bf33f + b83f92b commit 2d3290e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions lib/tabs/region.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import 'dart:math';
import 'dart:ui';

import 'package:auto_size_text/auto_size_text.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:genome_2133/views/variant-view.dart';
Expand Down Expand Up @@ -244,7 +243,7 @@ class _RegionCard extends State<RegionCard> {
children: [
for (int i = 0; i < fakeCount; i++)
Padding(
padding: const EdgeInsets.all(2.0),
padding: const EdgeInsets.all(1.0),
child: TextButton(
style: TextButton.styleFrom(
textStyle:
Expand All @@ -265,7 +264,7 @@ class _RegionCard extends State<RegionCard> {
),
)),
Padding(
padding: EdgeInsets.only(right: 18),
padding: const EdgeInsets.only(right: 18),
child: Align(
alignment: Alignment.centerRight,
child: ElevatedButton(
Expand Down Expand Up @@ -295,10 +294,10 @@ class _RegionCard extends State<RegionCard> {
),
),
Image.asset(
"assets/images/fake_report.png",
"assets/images/fake_report.png", // TODO: autogenerate report diagram
),
Padding(
padding: EdgeInsets.only(right: 18),
padding: const EdgeInsets.only(right: 18),
child: Align(
alignment: Alignment.centerRight,
child: ElevatedButton(
Expand Down

0 comments on commit 2d3290e

Please sign in to comment.