This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright 2014 The Flutter Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| import 'package:flutter/gestures.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/rendering.dart'; | |
| const Duration _bottomSheetEnterDuration = Duration(milliseconds: 250); | |
| const Duration _bottomSheetExitDuration = Duration(milliseconds: 200); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library quran_translations; | |
| import 'dart:convert'; | |
| import 'dart:io'; | |
| import 'package:quran_translations/data/translations_from_github.dart'; | |
| import 'package:quran_translations/db/quran_translations_db.dart'; | |
| import 'package:quran_translations/model/translation.dart'; | |
| import 'package:quran_translations/model/translator.dart'; |