Opacity: zIndex: ⎘⏮⏭ Get 100000 0FP0EXP Token to input your own list (json format) or insert json link:
⏯⏮⏭↻ Get 80000 0FP0EXP Token to input your own list (json format) or insert json link:
My Playlist: Songs Original Soundtracks
JSON Ready: Not Ready
Ready State:
Network State:
Name:
Album:
Reference:
General HTML background color:
Header background color:
Menu background color:
Content background color:
Widget background color:
Footer background color:
Get 150000 0FP0EXP Token to unlock this feature.
Heading 1 font size:
Heading 2 font size:
Heading 3 font size:
Heading 4 font size:
Heading 5 font size:
Heading 6 font size:
Header font size:
Header Widget font size:
Menu font size:
Widget font size:
Footer font size:
Content font size:
Get 200000 0FP0EXP Token to unlock this feature.
Heading 1 font color:
Heading 2 font color:
Heading 3 font color:
Heading 4 font color:
Heading 5 font color:
Heading 6 font color:
Header font color:
Header Widget font color:
Menu font color:
Widget font color:
Footer font color:
Content font color:
Get 250000 0FP0EXP Token to unlock this feature.
Heading 1 font shadow:
Heading 2 font shadow:
Heading 3 font shadow:
Heading 4 font shadow:
Heading 5 font shadow:
Heading 6 font shadow:
Header font shadow:
Header Widget font shadow:
Menu font shadow:
Widget font shadow:
Footer font shadow:
Content font shadow:
Click the above image for basic sourced and click following button for processing token source code. Add
Ethereum and EVM (ETC, BSC, AVAX-C-Chain, Polygon, etc). Add
Telegram Open Network (TON) decentralized application. Add
Solana decentralized application. Add
Tron decentralized application. Add
Near decentralized application. Add
Wax decentralized application. Add
Myalgo wallet for Algorand decentralized application. Add
Sync2 wallet for Vechain decentralized application. Add
Scatter wallet for EOS decentralized application. Add
Anchor Link wallet for EOS decentralized application. Add
Ontology decentralized application. Add
Rabbet wallet for Stellar Lumen decentralized application. Add
Freighter wallet for Stellar Lumen decentralized application. Add
Hive Signer for Hive decentralized application. Add
Hive Key Chain for Hive decentralized application. Add
Zilpay wallet for Zilliqa decentralized application. Add
Neoline wallet for Neo N2 decentralized application. Add
Neoline wallet for Neo N3 decentralized application. Add
Keplr wallet for Cosmos and other decentralized application. Add
Keeper wallet for Waves decentralized application. Add
IWallet for IOST decentralized application. Add
Get 60 0FP0EXP Token to remove widget entirely!
source code
word number: 1712
Time: 2024-10-02 15:37:44 +0000
// Dart basic sintax from https://dart.dev/language // 5. Imports // Importing core libraries import 'dart:math'; import 'dart:async'; void main() { // 1. Print print("1. Print"); print('Hello, World!'); // 2. Variables print("\n 2. Variables"); var name = 'Voyager I'; var year = 1977; var antennaDiameter = 3.7; // 2.1 Arrays var flybyObjects = ['Jupiter', 'Saturn', 'Uranus', 'Neptune']; // 2.2 Objects var image = { 'tags': ['saturn'], 'url': '//path/to/saturn.jpg' }; print(name); print(year); print(antennaDiameter); print(flybyObjects); print(image); // 3. Control flow statements print("\n 3. Control flow statements"); // 3.1 Conditional if (year >= 2001) { print('21st century'); } else if (year >= 1901) { print('20th century'); } // 3.2 Loops for (final object in flybyObjects) { print(object); } for (int month = 1; month <= 12; month++) { print(month); } while (year < 1980) { year += 1; print(year); } // 4. Functions print("\n 4.Functions"); int fibonacci(int n) { if (n == 0 || n == 1) return n; return fibonacci(n - 1) + fibonacci(n - 2); } var result = fibonacci(20); print(result); flybyObjects.where((name) => name.contains('turn')).forEach(print); // Using Class print("\n 6. Classes"); var voyager = Spacecraft('Voyager I', DateTime(1977, 9, 5)); voyager.describe(); var voyager3 = Spacecraft.unlaunched('Voyager III'); voyager3.describe(); // Using Enum print("\n 7. Enum"); final yourPlanet = Planet.uranus; if (!yourPlanet.isGiant) { print('Your planet is not a "giant planet".'); } // from exeption try { // Some code that might throw an exception divide(10, 0); // Division by zero } catch (e) { print('Exception caught: $e'); } } // 6. Classes class Spacecraft { String name; DateTime? launchDate; // Read-only non-final property int? get launchYear => launchDate?.year; // Constructor, with syntactic sugar for assignment to members. Spacecraft(this.name, this.launchDate) { // Initialization code goes here. } // Named constructor that forwards to the default one. Spacecraft.unlaunched(String name) : this(name, null); // Method. void describe() { print('Spacecraft: $name'); // Type promotion doesn't work on getters. var launchDate = this.launchDate; if (launchDate != null) { int years = DateTime.now().difference(launchDate).inDays ~/ 365; print('Launched: $launchYear ($years years ago)'); } else { print('Unlaunched'); } } } // 7. Enum enum PlanetType { terrestrial, gas, ice } /// Enum that enumerates the different planets in our solar system /// and some of their properties. enum Planet { mercury(planetType: PlanetType.terrestrial, moons: 0, hasRings: false), venus(planetType: PlanetType.terrestrial, moons: 0, hasRings: false), // ··· uranus(planetType: PlanetType.ice, moons: 27, hasRings: true), neptune(planetType: PlanetType.ice, moons: 14, hasRings: true); /// A constant generating constructor const Planet( {required this.planetType, required this.moons, required this.hasRings}); /// All instance variables are final final PlanetType planetType; final int moons; final bool hasRings; /// Enhanced enums support getters and other methods bool get isGiant => planetType == PlanetType.gas || planetType == PlanetType.ice; } // 8. Inheritance class Orbiter extends Spacecraft { double altitude; Orbiter(super.name, DateTime super.launchDate, this.altitude); } // 9. Mixins mixin Piloted { int astronauts = 1; void describeCrew() { print('Number of astronauts: $astronauts'); } } // 10. Interfaces and abstract classes abstract class Describable { void describe(); void describeWithEmphasis() { print('========='); describe(); print('========='); } } // 11. Async const oneSecond = Duration(seconds: 1); // ··· Future<void> printWithDelay(String message) async { await Future.delayed(oneSecond); print(message); } // 12. Exception double divide(int a, int b) { if (b == 0) { throw Exception('Cannot divide by zero'); } return a / b; }
Run on Dartpad
import 'package:flutter/material.dart'; void main() { runApp( const Center( child: Text( 'Hello, world!', textDirection: TextDirection.ltr, ), ), ); }
import 'package:flutter/material.dart'; class MyAppBar extends StatelessWidget { const MyAppBar({required this.title, super.key}); // Fields in a Widget subclass are always marked "final". final Widget title; @override Widget build(BuildContext context) { return Container( // CONTAINER height: 56, // in logical pixels padding: const EdgeInsets.symmetric(horizontal: 8), decoration: BoxDecoration(color: Colors.blue[500]), // Row is a horizontal, linear layout. child: Row( children: [ const IconButton( icon: Icon(Icons.menu), tooltip: 'Navigation menu', onPressed: null, // null disables the button ), // Expanded expands its child // to fill the available space. Expanded( child: title, ), const IconButton( icon: Icon(Icons.search), tooltip: 'Search', onPressed: null, ), ], ), ); } } class MyScaffold extends StatelessWidget { const MyScaffold({super.key}); @override Widget build(BuildContext context) { // Material is a conceptual piece // of paper on which the UI appears. return Material( // Column is a vertical, linear layout. child: Column( children: [ MyAppBar( title: Text( 'Example title', style: Theme.of(context) // .primaryTextTheme .titleLarge, ), ), const Expanded( child: Center( child: Text('Hello, world!'), ), ), ], ), ); } } void main() { runApp( const MaterialApp( title: 'My app', // used by the OS task switcher home: SafeArea( child: MyScaffold(), ), ), ); }