Igor Ferreira

Results 21 issues of Igor Ferreira

Doubt, initially

feature request

```v module vui pub enum SideStyle { none hidden dotted dashed solid double groove ridge inset outset } pub struct Side { thickness f64 color Color style SideStyle } pub...

enhancement

```dart class ProductProvider { FutureOr findAll() async { MySqlConnection? conn; try { conn = await DatabaseConnect().openConnection(); final Results result = await conn.query('select * from Produto'); return result.map((ResultRow product) => ProductModel(...

example of tags: webserver, UI, noSQL, SQL, API, etc

suggestion

Allow styles in stores to reuse

enhancement
language

Alternative 1, like Dart: ```pony class Point var x: F64 var y: F64 new create(this.x, this.y) ``` Alternative 2, like Python, Typescript ```pony class Point new create(var this.x: F64, var...

0 - request - user

### Workspace Folder #### Principals - [x] Create new file - [x] Create new folder - [x] Rename Folder F2 - [x] Move Folder to Trash Delete - [ ]...

C-feature
A-ui

config.rs ```rust pub use config::ConfigError; use serde::Deserialize; #[derive(Deserialize)] pub struct ServerConfig { pub host: String, pub port: i32, } #[derive(Deserialize)] pub struct Config { pub server: ServerConfig } impl Config...

```v mut i := (u16 | null)(78) i = (u16 | null)(49) // or i = u16(49) i = (u16 | null)(null) // or i = null // ?u16 is...

```v struct Sct { set: n int } s := Sct{n: 5} s.n = 7 // ok println(s.n) // error ```