This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Bootstrap 5 demo</title> | |
<link rel="stylesheet" href="./styles/main.css"> | |
</head> |
This file contains 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
// Variables | |
$secondary: #f4f4f4; | |
$primary: #401f7c; | |
$border-radius: 0; | |
$border-radius-sm: 0; | |
$border-radius-lg: 0; | |
@import "./style"; | |
@import "../node_modules/bootstrap/scss/bootstrap.scss"; |
This file contains 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
// Variables | |
$secondary: #f4f4f4; | |
$primary: #401f7c; | |
$border-radius: 0; | |
$border-radius-sm: 0; | |
$border-radius-lg: 0; | |
// Utilities | |
$utilities: () !default; |
This file contains 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
........ | |
<div class="mb-3"> | |
<label for="exampleInputEmail1" class="sr-only">Email address</label> | |
<input type="email" | |
class="form-control ip-4" | |
id="exampleInputEmail1" | |
placeholder="Email address" | |
aria-describedby="emailHelp"> | |
</div> |
This file contains 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
import React, {useRef} from 'react'; | |
import { | |
Dimensions, | |
StyleSheet, | |
Text, | |
TextInput, | |
TouchableOpacity, | |
View, | |
} from 'react-native'; |
This file contains 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
class PlanetInfo { | |
final int position; | |
final String name; | |
final String iconImage; | |
final String description; | |
final List<String> images; | |
PlanetInfo( | |
this.position, { | |
required this.name, |
This file contains 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
import 'package:flutter/material.dart'; | |
Color primaryTextColor = const Color(0xFF414C6B); | |
Color secondaryTextColor = const Color(0xFFE4979E); | |
Color titleTextColor = Colors.white; | |
Color contentTextColor = const Color(0xff868686); | |
Color navigationColor = const Color(0xFF6751B5); | |
Color gradientStartColor = const Color(0xFF4051A9); | |
Color gradientEndColor = const Color(0xFF9354B9); | |
Color dotColor = const Color(0xFFA87DCF); |
This file contains 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
import 'package:flutter/material.dart'; | |
import 'package:ionicons/ionicons.dart'; | |
import '../themes/constants.dart'; | |
class CustomCard extends StatelessWidget { | |
final String name; | |
const CustomCard({Key? key, required this.name}) : super(key: key); |
This file contains 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
import 'package:card_swiper/card_swiper.dart'; | |
import 'package:flutter/material.dart'; | |
import '../model/planet_info.dart'; | |
import '../themes/constants.dart'; | |
import '../widgets/card.dart'; | |
import '../widgets/header.dart'; |
This file contains 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
import 'package:flutter/material.dart'; | |
import '../themes/constants.dart'; | |
class HomePage extends StatelessWidget { | |
const HomePage({Key? key}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( |
OlderNewer