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
import 'package:flutter/material.dart'; | |
import 'dart:async'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Data Loading Example', |
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
x = float( input( "enter first number\t\t" ) ) | |
y =float(input("enter second number\n")) | |
operation = input("choose an operation (+ , - , * , /): ") | |
if operation == '+': | |
result = x + y | |
elif operation == '-': | |
result = x - y |
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
<?php | |
namespace App\Zeus\Fields; | |
use Filament\Forms\Components\Grid; | |
use Filament\Forms\Components\Hidden; | |
use Filament\Forms\Components\Repeater; | |
use Filament\Forms\Components\TextInput; | |
use Filament\Tables\Columns\TextColumn; | |
use LaraZeus\Accordion\Forms\Accordion; |