Created
March 11, 2022 14:42
-
-
Save abdullahnettoor/afc7ea7ca902044cb8dbe5e42bccd08a to your computer and use it in GitHub Desktop.
Flutter - Build APK through GitHub Actions
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
| name: Flutter CI | |
| # This workflow is triggered on pushes to the repository. | |
| on: | |
| push: | |
| branches: | |
| - master | |
| # on: push # Default will running for every branch. | |
| jobs: | |
| build: | |
| # This job will run on ubuntu virtual machine | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Setup Java environment in order to build the Android app. | |
| - uses: actions/checkout@v1 | |
| - uses: actions/setup-java@v1 | |
| with: | |
| java-version: '12.x' | |
| # Setup the flutter environment. | |
| - uses: subosito/flutter-action@v1 | |
| with: | |
| channel: 'beta' # 'dev', 'alpha', default to: 'stable' | |
| # flutter-version: '1.12.x' # you can also specify exact version of flutter | |
| # Get flutter dependencies. | |
| - run: flutter pub get | |
| # Check for any formatting issues in the code. | |
| - run: flutter format --set-exit-if-changed . | |
| # Statically analyze the Dart code for any errors. | |
| - run: flutter analyze . | |
| # Run widget tests for our flutter project. | |
| - run: flutter test | |
| # Build apk. | |
| - run: flutter build apk | |
| # Upload generated apk to the artifacts. | |
| - uses: actions/upload-artifact@v1 | |
| with: | |
| name: release-apk | |
| path: build/app/outputs/apk/release/app-release.apk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
import 'package:flutter/material.dart';
import 'dart:math';
void main() {
runApp(const LoanCalcApp());
}
class LoanCalcApp extends StatelessWidget {
const LoanCalcApp({super.key});
@OverRide
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Loan Calculator',
theme: ThemeData(
primarySwatch: Colors.blue,
useMaterial3: true,
),
home: const LoanCalculatorHome(),
);
}
}
class LoanCalculatorHome extends StatefulWidget {
const LoanCalculatorHome({super.key});
@OverRide
State createState() => _LoanCalculatorHomeState();
}
class _LoanCalculatorHomeState extends State {
final _formKey = GlobalKey();
final _amountController = TextEditingController();
final _interestController = TextEditingController();
final _tenureController = TextEditingController();
double _monthlyEMI = 0.0;
double _totalInterest = 0.0;
double _totalPayment = 0.0;
void _calculateLoan() {
if (!_formKey.currentState!.validate()) return;
}
@OverRide
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Loan EMI Calculator'),
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
),
body: SingleChildScrollView(
padding: const EdgeInsets.all(16.0),
child: Form(
key: _formKey,
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
// Loan Amount Input
TextFormField(
controller: _amountController,
keyboardType: TextInputType.number,
decoration: const InputDecoration(
labelText: 'Loan Amount ($)',
border: OutlineInputBorder(),
prefixIcon: Icon(Icons.attach_money),
),
validator: (value) => value!.isEmpty ? 'Enter loan amount' : null,
),
const SizedBox(height: 16),
}
Widget _resultRow(String title, String value, Color valueColor) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 8.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(title, style: const TextStyle(fontSize: 16, fontWeight: FontWeight.bold)),
Text(value, style: TextStyle(fontSize: 18, fontWeight: FontWeight.bold, color: valueColor)),
],
),
);
}
}