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
// Modified from https://youtu.be/4v4l6E8Sbj8?t=1025 (at around 17:05) | |
import 'package:flutter/services.dart'; | |
/// A [TextInputFormatter] for the credit card number. Adds space after every four characters. | |
class CreditCardInputFormatter extends TextInputFormatter { | |
final separator = ' '; | |
@override | |
TextEditingValue formatEditUpdate(TextEditingValue oldValue, TextEditingValue newValue) { | |
return textManipulation( |
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
// Bottom APP bar done via Stack widget - issue: no Notched FAB available.. | |
// `Stack` helps move the BottomAppBar down below the line of SafeArea by | |
// using a negative value for `Positioned`'s `bottom` property. | |
// | |
//// TAKEN FROM: | |
// SafeArea around Scaffold with BottomNavigationBar -> How to remove Bar elevation? | |
// https://github.com/flutter/flutter/issues/21688 | |
import 'package:flutter/material.dart'; |
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
[INFO] --- maven-dependency-plugin:3.0.1:tree (default-cli) @ siem --- | |
[INFO] ftn.bsep9:siem:jar:0.0.1-SNAPSHOT | |
[INFO] +- org.springframework.boot:spring-boot-starter-jersey:jar:2.0.0.RELEASE:compile | |
[INFO] | +- org.springframework.boot:spring-boot-starter:jar:2.0.0.RELEASE:compile | |
[INFO] | | +- org.springframework.boot:spring-boot:jar:2.0.0.RELEASE:compile | |
[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:2.0.0.RELEASE:compile | |
[INFO] | | +- org.springframework.boot:spring-boot-starter-logging:jar:2.0.0.RELEASE:compile | |
[INFO] | | | +- ch.qos.logback:logback-classic:jar:1.2.3:compile | |
[INFO] | | | | \- ch.qos.logback:logback-core:jar:1.2.3:compile | |
[INFO] | | | +- org.apache.logging.log4j:log4j-to-slf4j:jar:2.10.0:compile |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>ftn.bsep9</groupId> | |
<artifactId>siem</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<packaging>jar</packaging> |